wartron/yii2-helpers-formatter

Yii2 Formatter

dev-master 2015-08-30 18:49 UTC

This package is not auto-updated.

Last update: 2024-06-08 16:21:18 UTC


README

This is a custome formatter that provides shortcuts to two formats I use in my projects. hex and cent.

asHex will return an uppercase hex string from the value

asCent will return asCurrency but with the $value/100

To use these formatters, set the formatter copmponent in your config/web.php or config/main.php depending on your yii2 app structure.

'formatter' => [
    'class' => '\wartron\yii2helpers\formatter\Formatter'
],