(Yaf >=1.0.0)
Yaf_Controller_Abstract::getView — Retrieve the view engine
Returns the view engine bound to this controller.
This function has no parameters.
A Yaf_View_Interface instance, or null if no view engine is available.
Example #1 Yaf_Controller_Abstract::getView() example
<?php
class ProductController extends Yaf_Controller_Abstract
{
public function indexAction() {
$view = $this->getView();
// export $products to the template product/index.phtml
$view->assign("products", array("yaf", "php"));
}
}
?>