PHP 8.6.0 Beta 3 is available for testing

Yaf_Controller_Abstract::getView

(Yaf >=1.0.0)

Yaf_Controller_Abstract::getViewRetrieve the view engine

Descrizione

public function Yaf_Controller_Abstract::getView(): ?Yaf_View_Interface

Returns the view engine bound to this controller.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

A Yaf_View_Interface instance, or null if no view engine is available.

Esempi

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"));
    }
}
?>

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top