Guest User

Untitled

a guest
May 26th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. class Frontend_Bootstrap extends Zend_Application_Module_Bootstrap {
  4.  
  5. protected function _initNavigation() {
  6.  
  7. $this->getApplication()->bootstrap('View');
  8. $this->getApplication()->bootstrap('Layout');
  9.  
  10. $navigation = new Zend_Navigation();
  11. $view = Zend_Layout::getMvcInstance()->getView();
  12.  
  13. /* MORE NAVIGATION CODE HERE ... */
  14.  
  15. $view->navigation($navigation);
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment