icingaweb2/library/Icinga/Web/View/helpers/string.php

13 lines
340 B
PHP
Raw Normal View History

2015-01-19 14:20:57 +01:00
<?php
namespace Icinga\Web\View;
use Icinga\Util\String;
$this->addHelperFunction('ellipsis', function ($string, $maxLength, $ellipsis = '...') {
return String::ellipsis($string, $maxLength, $ellipsis);
});
2015-11-20 15:17:38 +01:00
$this->addHelperFunction('nl2br', function ($string) {
return str_replace(array('\r\n', '\r', '\n'), '<br>', $string);
});