PHP 8.5.10 Released!

Yaf_Dispatcher::initView

(Yaf >=1.0.0)

Yaf_Dispatcher::initViewInitialize view and return it

Description

public function Yaf_Dispatcher::initView(string $templates_dir, ?array $options = null): Yaf_View_Interface|null|false

Initialize and return a Yaf_View_Simple instance bound to the dispatcher, using the given template directory.

Parameters

templates_dir

The directory that holds the view templates.

options

Options passed to the view engine, see Yaf_View_Simple::__construct().

Return Values

A Yaf_View_Interface instance on success, or false / null on failure.

Examples

Example #1 Yaf_Dispatcher::initView() example

<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");

$view = Yaf_Dispatcher::getInstance()->initView(
    dirname(__FILE__) . "/application/views",
    array("tpl_suffix" => ".html")
);

$view->assign("title", "Home");
?>

See Also

add a note

User Contributed Notes

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