mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-30 19:04:10 +01: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);
 | |
| });
 |