Skip to content

Helpers

View helpers covering the most frequent rendering needs.

HelperPurpose
CommonGrab-bag of frequently-used view utilities.
FormatData formatting (numbers, dates, badges, status indicators).
FormExtensions on top of the core FormHelper.
HtmlExtensions on top of the core HtmlHelper.
IconIcon rendering (deprecated — see the dedicated Icon plugin).
MeterHTML5 <meter> rendering.
ProgressProgress bars (text + HTML5 <progress>).
TreeRender nested tree structures.
TypographyTypographic 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');
}

Released under the MIT License.