Yaf_View_Simple::__construct
(Yaf >=1.0.0)
Yaf_View_Simple::__construct — Constructor of Yaf_View_Simple
Описание
final public Yaf_View_Simple::__construct
( string
$tempalte_dir
[, array $options
] )
Список параметров
-
tempalte_dir
-
The base directory of the templates, by default, it is APPLICATOIN . "/views" for Yaf.
-
options
-
Options for the engine, as of Yaf 2.1.13, you can use short tag "<?=$var?>" in your template(regardless of "short_open_tag"), so comes a option named "short_tag", you can switch this off to prevent use short_tag in template.
Примеры
Пример #1 Yaf_View_Simple::__constructor()example
<?php
define ("TEMPLATE_DIRECTORY", APPLICATOIN_PATH . '/views');
$view = new Yaf_View_Simple(TEMPLATE_DIRECTORY, array(
'short_tag' => false //doesn't allow use short tag in template
));
?>
Возвращаемые значения
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Другие базовые расширения
- Yet Another Framework
- Функция Yaf_View_Simple::assign() - Assign values
- Функция Yaf_View_Simple::assignRef() - The assignRef purpose
- Функция Yaf_View_Simple::clear() - Clear Assigned values
- Функция Yaf_View_Simple::__construct() - Constructor of Yaf_View_Simple
- Функция Yaf_View_Simple::display() - Render and display
- Функция Yaf_View_Simple::eval() - Render template
- Функция Yaf_View_Simple::__get() - Retrieve assigned variable
- Функция Yaf_View_Simple::getScriptPath() - Get templates directory
- Функция Yaf_View_Simple::__isset() - The __isset purpose
- Функция Yaf_View_Simple::render() - Render template
- Функция Yaf_View_Simple::__set() - Set value to engine
- Функция Yaf_View_Simple::setScriptPath() - Set tempaltes directory
Коментарии
404 Not Found