Yaf_Controller_Abstract::initView
(Yaf >=1.0.0)
Initialize the view and return it
Description
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.
Parameters
optionsOptions passed to the view engine, see
Yaf_View_Simple::__construct.
Return Values
A Yaf_View_Interface instance on success, or null on failure.
Examples
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"));
}
}
?>See Also
Yaf_Controller_Abstract::getViewYaf_View_Interface