blob: f6dc2260e88e29b8fa0b71f3763a25988b7a68e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
/**
* Class Zend_View_Helper_Util
*/
class Zend_View_Helper_ProtectId extends Zend_View_Helper_Abstract
{
public function protectId($id)
{
return Zend_Controller_Front::getInstance()->getRequest()->protectId($id);
}
}
|