Add Format.php view helper

refs #4301
This commit is contained in:
Eric Lippmann 2013-06-27 13:44:01 +02:00
parent 674f36b291
commit 84f042fd8b
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
use Icinga\Util\Format;
class Zend_View_Helper_Format extends Zend_View_Helper_Abstract
{
public function format()
{
return Format::getInstance();
}
}