diff options
Diffstat (limited to 'application/views/helpers/ProtectId.php')
-rw-r--r-- | application/views/helpers/ProtectId.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/application/views/helpers/ProtectId.php b/application/views/helpers/ProtectId.php new file mode 100644 index 0000000..f6dc226 --- /dev/null +++ b/application/views/helpers/ProtectId.php @@ -0,0 +1,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); + } +} |