Beispiel #1
0
 /**
  * Class Constructor
  * 
  * @param Zend_Controller_Dispatcher_Interface $dispatcher
  * @param Zend_Controller_Request_Abstract $request
  * @return void
  */
 public function __construct(Zend_Controller_Dispatcher_Interface $dispatcher, Zend_Controller_Request_Abstract $request)
 {
     $request->setControllerKey('page');
     parent::__construct(array('module' => '', 'page' => '', 'action' => ''), $dispatcher, $request);
     $this->_controllerKey = 'page';
 }