IndexController.php 301 B

12345678910111213141516171819202122
  1. <?php
  2. class IndexController extends Zend_Controller_Action
  3. {
  4. public function init()
  5. {
  6. }
  7. public function indexAction()
  8. {
  9. $this->_forward('index', 'showbuilder');
  10. }
  11. public function mainAction()
  12. {
  13. $this->_helper->layout->setLayout('layout');
  14. }
  15. }