(Yaf >=1.0.0)
Yaf_Controller_Abstract::init — Controller initializer
Yaf_Controller_Abstract::__construct() is not meant to be overridden with custom logic, so Yaf_Controller_Abstract::init() is provided as the userland initialization hook. If it is defined in a controller, it is called right after the controller object is instantiated.
This function has no parameters.
No value is returned.
Example #1 Yaf_Controller_Abstract::init() example
<?php
class IndexController extends Yaf_Controller_Abstract
{
// init() is called right after the controller is instantiated,
// before any action is dispatched
public function init() {
$this->getView()->assign("sitename", "Yaf Tutorial");
}
public function indexAction() {
// ...
}
}
?>