mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-09 09:10:10 +02:00
9 lines
213 B
PHP
9 lines
213 B
PHP
<?php
|
|
namespace Icinga\Web\View;
|
|
|
|
use Icinga\Util\String;
|
|
|
|
$this->addHelperFunction('ellipsis', function ($string, $maxLength, $ellipsis = '...') {
|
|
return String::ellipsis($string, $maxLength, $ellipsis);
|
|
});
|