Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
function main($content, $conf)
{
...
$front = Zend_Controller_Front::getInstance()
->setModuleControllerDirectoryName('controllers')
->setControllerDirectory('mvc/application/controllers')
->setDefaultControllerName('index');
$front->dispatch();
...
}
***
public function init()
{
$action = $this->_request->getParam('act');
if (method_exists($this, $action.'Action')){
$this->_forward($action);
}else{
$this->_forward('index');
}
}
Zend_Controller_Front::getInstance()->dispatch()<?php echo $this->formRegister->name->getLabel(); ?>
<input
type="text"
name="<?php echo $this->formRegister->name->getName(); ?>"
value="<?php echo $this->formRegister->name->getValue(); ?>"
maxlength="<?php echo $this->formRegister->name->getAttrib('maxlength'); ?>"
/>
<iinput
type="text"
name="email"
value="<?php echo $this->formRegister->name->getValue(); ?>"
maxlength="20"
/>
Zend Framework первой свежести, ч1: зендируем MVC