The Yaf_View_Simple class

(Yaf >=1.0.0)

Introduction

Yaf_View_Simple is the built-in template engine in Yaf, it is a simple but fast template engine, and only support PHP script template.

Class synopsis

class Yaf_View_Simple implements Yaf_View_Interface {
/* Properties */
protected $_tpl_vars;
protected $_tpl_dir;
/* Methods */
final public function __construct(string $template_dir, array $options = ?)
public function assign(string $name, mixed $value = ?): bool
public function assignRef(string $name, mixed &$value): bool
public function clear(string $name = ?): bool
public function display(string $tpl, array $tpl_vars = ?): bool
public function eval(string $tpl_content, array $tpl_vars = ?): string
public function __get(string $name = ?): void
public function getScriptPath(): string
public function __isset(string $name): void
public function render(string $tpl, array $tpl_vars = ?): string
public function __set(string $name, mixed $value): void
public function setScriptPath(string $template_dir): bool
}

Properties

_tpl_vars

_tpl_dir

Table of Contents

add a note

User Contributed Notes

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