27 lines
410 B
PHP
27 lines
410 B
PHP
<?php
|
|
|
|
class IndexController extends Zend_Controller_Action
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
$this->_forward('index', 'showbuilder');
|
|
}
|
|
|
|
public function mainAction()
|
|
{
|
|
$this->_helper->layout->setLayout('layout');
|
|
}
|
|
|
|
public function maintenanceAction()
|
|
{
|
|
$this->getResponse()->setHttpResponseCode(503);
|
|
}
|
|
|
|
}
|