2010-12-07 20:19:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class IndexController extends Zend_Controller_Action
|
|
|
|
{
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
2012-07-11 00:53:06 +02:00
|
|
|
|
2010-12-07 20:19:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function indexAction()
|
|
|
|
{
|
2012-03-15 14:14:02 +01:00
|
|
|
$this->_forward('index', 'showbuilder');
|
2010-12-07 20:19:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function mainAction()
|
2012-07-11 00:53:06 +02:00
|
|
|
{
|
2010-12-07 20:19:27 +01:00
|
|
|
$this->_helper->layout->setLayout('layout');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|