IndexController.php 297 B

12345678910
  1. <?php
  2. class Zfappbootstrap_IndexController extends Zend_Controller_Action
  3. {
  4. public function indexAction()
  5. {
  6. echo "Inside index action!\n";
  7. $this->_helper->viewRenderer->setNoRender();
  8. $this->getInvokeArg('bootstrap')->getContainer()->zfappbootstrap = true;
  9. }
  10. }