Remove unused ResolceMacro Helper

refs #6392
This commit is contained in:
Matthias Jentsch 2015-05-28 15:15:07 +02:00
parent 2572842aa4
commit 3b601decc5
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
use \Zend_View_Helper_Abstract;
use Icinga\Module\Monitoring\Object\Macro;
class Zend_View_Helper_ResolveMacros extends Zend_View_Helper_Abstract
{
public function resolveMacros($input, $object)
{
return Macro::resolveMacros($input, $object);
}
public function resolveMacro($macro, $object)
{
return Macro::resolveMacro($macro, $object);
}
}