2015-12-17 10:47:05 +01:00
|
|
|
<?php
|
2016-02-26 12:42:21 +01:00
|
|
|
// Avoid complaints about missing namespace and invalid class name
|
|
|
|
// @codingStandardsIgnoreStart
|
2015-12-17 10:47:05 +01:00
|
|
|
|
|
|
|
use Icinga\Module\Director\PlainObjectRenderer;
|
|
|
|
|
|
|
|
class Zend_View_Helper_RenderPlainObject extends Zend_View_Helper_Abstract
|
2016-02-26 12:42:21 +01:00
|
|
|
// @codingStandardsIgnoreEnd
|
2015-12-17 10:47:05 +01:00
|
|
|
{
|
|
|
|
public function renderPlainObject($object)
|
|
|
|
{
|
|
|
|
return PlainObjectRenderer::render($object);
|
|
|
|
}
|
|
|
|
}
|