15 lines
416 B
PHP
15 lines
416 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
|
|
|
namespace Icinga\Web\View;
|
|
|
|
use Icinga\Util\StringHelper;
|
|
|
|
$this->addHelperFunction('ellipsis', function ($string, $maxLength, $ellipsis = '...') {
|
|
return StringHelper::ellipsis($string, $maxLength, $ellipsis);
|
|
});
|
|
|
|
$this->addHelperFunction('nl2br', function ($string) {
|
|
return str_replace(array('\r\n', '\r', '\n'), '<br>', $string);
|
|
});
|