mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-09 17:20:10 +02:00
Modified the host list markup to reflect host information. Comments are currently missing as well as behaviour and final styling. The styling part is not really part of the ticket, as we decided not to style or add additional markup, but as the work has been done in sprint 1.0-4 it makes no sense to throw it away at this time refs #4179
20 lines
317 B
PHP
20 lines
317 B
PHP
<?php
|
|
|
|
class Zend_View_Helper_Trim extends Zend_View_Helper_Abstract
|
|
{
|
|
public function start()
|
|
{
|
|
ob_start("Zend_View_Helper_Trim::trimfunc");
|
|
}
|
|
|
|
public static function trimfunc($string)
|
|
{
|
|
return trim($string);
|
|
}
|
|
|
|
public function end()
|
|
{
|
|
ob_end_flush();
|
|
}
|
|
}
|