php8.5
Home/ Manual/ yaf / yaf_controller_abstract/ Yaf_Controller_Abstract::initView

Yaf_Controller_Abstract::initView

PHP function Edit on GitHub ✎

(Yaf >=1.0.0)

Initialize the view and return it

Description

Yaf_Controller_Abstract::initView([array|null $options]): Yaf_View_Interface|null

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

options

Options 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
<?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::getView
  • Yaf_View_Interface

Source: reference/yaf/yaf_controller_abstract/initview.xml · from the official PHP manual (php/doc-en)