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

Açıklama

public function Yaf_Controller_Abstract::getView(): ?Yaf_View_Interface

Returns the view engine bound to this controller.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

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

Örnekler

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

Ayrıca Bakınız

add a note

User Contributed Notes

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