2015-02-25 18:00:28 +01:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-02-25 18:00:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Zend_View_Helper_Util
|
|
|
|
*/
|
|
|
|
class Zend_View_Helper_ProtectId extends Zend_View_Helper_Abstract
|
|
|
|
{
|
2017-01-27 14:48:59 +01:00
|
|
|
public function protectId($id)
|
|
|
|
{
|
2015-02-25 18:00:28 +01:00
|
|
|
return Zend_Controller_Front::getInstance()->getRequest()->protectId($id);
|
|
|
|
}
|
|
|
|
}
|