Class yii\smarty\ViewRenderer

Inheritanceyii\smarty\ViewRenderer » yii\base\ViewRenderer
Available since version2.0

SmartyViewRenderer allows you to use Smarty templates in views.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined 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

Hide inherited properties

PropertyTypeDescriptionDefined By
$smarty \Smarty The Smarty object used for rendering yii\smarty\ViewRenderer

Public Methods

Hide inherited methods

MethodDescriptionDefined 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

Hide inherited methods

MethodDescriptionDefined 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

$cachePath public property

The directory or path alias pointing to where Smarty cache will be stored.

public string $cachePath '@runtime/Smarty/cache'
$compilePath public property

The directory or path alias pointing to where Smarty compiled templates will be stored.

public string $compilePath '@runtime/Smarty/compile'
$extensionClass public property

Extension class name

public string $extensionClass '\yii\smarty\Extension'
$imports public property

Class imports similar to the use tag

public array $imports = []
$options public property

Additional Smarty options

See also http://www.smarty.net/docs/en/api.variables.tpl.

public array $options = []
$pluginDirs public property

Add additional directories to Smarty's search path for plugins.

public array $pluginDirs = []
$smarty protected property

The Smarty object used for rendering

protected \Smarty $smarty null
$smartyClass public property (available since version 2.0.7)

The Smarty class

public string $smartyClass '\Smarty'
$widgets public property

Widget declarations

public array $widgets = ['functions' => [], 'blocks' => []]

Method Details

__call() public method

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
aliasHandler() public method

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

init() public method

Instantiates and configures the Smarty object.

public void init ( )
render() public method

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

resolveTemplateDir() protected method

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