Helpers
View helpers covering the most frequent rendering needs.
| Helper | Purpose |
|---|---|
| Common | Grab-bag of frequently-used view utilities. |
| Format | Data formatting (numbers, dates, badges, status indicators). |
| Form | Extensions on top of the core FormHelper. |
| Html | Extensions on top of the core HtmlHelper. |
| Icon | Icon rendering (deprecated — see the dedicated Icon plugin). |
| Meter | HTML5 <meter> rendering. |
| Progress | Progress bars (text + HTML5 <progress>). |
| Tree | Render nested tree structures. |
| Typography | Typographic cleanup at render time. |
Load any helper from your AppView:
php
public function initialize(): void {
parent::initialize();
$this->loadHelper('Tools.Common');
$this->loadHelper('Tools.Format');
}