Class yii\smarty\ViewRenderer
Inheritance | yii\smarty\ViewRenderer » yii\base\ViewRenderer |
---|---|
Available since version | 2.0 |
SmartyViewRenderer allows you to use Smarty templates in views.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$cachePath | string | The directory or path alias pointing to where Smarty cache will be stored. | yii\smarty\ViewRenderer |
$compilePath | string | The directory or path alias pointing to where Smarty compiled templates will be stored. | yii\smarty\ViewRenderer |
$extensionClass | string | Extension class name | yii\smarty\ViewRenderer |
$imports | array | Class imports similar to the use tag | yii\smarty\ViewRenderer |
$options | array | Additional Smarty options | yii\smarty\ViewRenderer |
$pluginDirs | array | Add additional directories to Smarty's search path for plugins. | yii\smarty\ViewRenderer |
$smartyClass | string | The Smarty class | yii\smarty\ViewRenderer |
$widgets | array | Widget declarations | yii\smarty\ViewRenderer |
Protected Properties
Property | Type | Description | Defined By |
---|---|---|---|
$smarty | \Smarty | The Smarty object used for rendering | yii\smarty\ViewRenderer |
Public Methods
Method | Description | Defined By |
---|---|---|
__call() | Mechanism to pass a widget's tag name to the callback function. | yii\smarty\ViewRenderer |
aliasHandler() | Resolves Yii alias into file path | yii\smarty\ViewRenderer |
init() | Instantiates and configures the Smarty object. | yii\smarty\ViewRenderer |
render() | Renders a view file. | yii\smarty\ViewRenderer |
Protected Methods
Method | Description | Defined By |
---|---|---|
resolveTemplateDir() | The directory can be specified in Yii's standard convention using @, // and / prefixes or no prefix for view relative directories. | yii\smarty\ViewRenderer |
Property Details
The directory or path alias pointing to where Smarty cache will be stored.
The directory or path alias pointing to where Smarty compiled templates will be stored.
Extension class name
Class imports similar to the use tag
Additional Smarty options
Add additional directories to Smarty's search path for plugins.
The Smarty object used for rendering
The Smarty class
Widget declarations
Method Details
Mechanism to pass a widget's tag name to the callback function.
Using a magic function call would not be necessary if Smarty would support closures. Smarty closure support is announced for 3.2, until its release magic function calls are used to pass the tag name to the callback.
public string __call ( $method, $args ) | ||
$method | string | |
$args | array | |
throws | \yii\base\InvalidConfigException | |
---|---|---|
throws | BadMethodCallException |
Resolves Yii alias into file path
public boolean|string aliasHandler ( $type, $name, &$content, &$modified, \Smarty $smarty ) | ||
$type | string | |
$name | string | |
$content | string | |
$modified | string | |
$smarty | \Smarty | |
return | boolean|string | Path to file or false if it's not found |
---|
Instantiates and configures the Smarty object.
public void init ( ) |
Renders a view file.
This method is invoked by \yii\web\View whenever it tries to render a view. Child classes must implement this method to render the given view file.
public string render ( $view, $file, $params ) | ||
$view | \yii\web\View | The view object used for rendering the file. |
$file | string | The view file. |
$params | array | The parameters to be passed to the view file. |
return | string | The rendering result |
---|
The directory can be specified in Yii's standard convention using @, // and / prefixes or no prefix for view relative directories.
protected string resolveTemplateDir ( $dir ) | ||
$dir | string | Directory name to be resolved |
return | string | The resolved directory name |
---|