Guest User

Untitled

a guest
Jun 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Zend_View_Helper_GetRequestParam
  2. {
  3. function getRequestParam($key)
  4. {
  5. $fc = Zend_Controller_Front::getInstance();
  6. $r = $fc->getRequest();
  7. return $r->getParam($key);
  8. }
  9. }
Add Comment
Please, Sign In to add comment