(Yaf >=1.0.0)
Yaf_Controller_Abstract::initView — Initialize the view and return it
Returns the view engine bound to this controller. The view engine is initialized by the Yaf_Dispatcher during dispatching, using the template path set for the current controller.
optionsOptions passed to the view engine, see Yaf_View_Simple::__construct().
A Yaf_View_Interface instance on success, or
null on failure.
Example #1 Yaf_Controller_Abstract::initView() example
<?php
class ProductController extends Yaf_Controller_Abstract
{
public function indexAction() {
// fetch the view engine bound to this controller, initialized
// with its template path, e.g. application/views/;
// options would be forwarded to the view engine, see
// Yaf_View_Simple::__construct()
$view = $this->initView();
$view->assign("products", array("yaf", "php"));
}
}
?>