function __construct(Zend_Controller_Action $controller)
 {
     parent::__construct();
     $this->setActionController($controller);
 }
예제 #2
0
 /**
  * Constructor
  *
  * Set the viewSuffix to "phtml" unless a viewSuffix option is
  * provided in the $options parameter.
  *
  * @param  Zend_View_Interface $view
  * @param  array $options
  * @return void
  */
 public function __construct(Zend_View_Interface $view = null, array $options = array())
 {
     parent::__construct($view, $options);
 }