ZfAppBootstrapCustomView.php 208 B

123456789
  1. <?php
  2. class ZfAppBootstrapCustomView extends Zend_Application_Bootstrap_Bootstrap {
  3. public function _initView()
  4. {
  5. $view = new Zend_View();
  6. $view->setInMethodByTest = true;
  7. return $view;
  8. }
  9. }