Container.php 221 B

1234567891011
  1. <?php
  2. require_once 'Zend/Navigation/Container.php';
  3. class My_Container extends Zend_Navigation_Container
  4. {
  5. public function addPage($page)
  6. {
  7. parent::addPage($page);
  8. $this->_pages = array();
  9. }
  10. }