Jannis Moßhammer 7116cfd60a Host list markup and less changes (WIP)
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
2013-07-12 14:14:32 +02:00

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();
}
}