You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
747 B
42 lines
747 B
11 years ago
|
Smarty Extension for Yii 2
|
||
|
==========================
|
||
12 years ago
|
|
||
11 years ago
|
This extension provides a `ViewRender` that would allow you to use Smarty view template engine.
|
||
12 years ago
|
|
||
11 years ago
|
To use this extension, simply add the following code in your application configuration:
|
||
11 years ago
|
|
||
12 years ago
|
```php
|
||
11 years ago
|
return [
|
||
12 years ago
|
//....
|
||
11 years ago
|
'components' => [
|
||
|
'view' => [
|
||
|
'renderers' => [
|
||
|
'tpl' => [
|
||
12 years ago
|
'class' => 'yii\smarty\ViewRenderer',
|
||
|
//'cachePath' => '@runtime/Smarty/cache',
|
||
11 years ago
|
],
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
];
|
||
12 years ago
|
```
|
||
|
|
||
11 years ago
|
Installation
|
||
|
------------
|
||
|
|
||
|
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
|
||
|
|
||
|
Either run
|
||
|
|
||
|
```
|
||
|
php composer.phar require yiisoft/yii2-smarty "*"
|
||
|
```
|
||
|
|
||
|
or add
|
||
|
|
||
|
```json
|
||
|
"yiisoft/yii2-smarty": "*"
|
||
|
```
|
||
|
|
||
|
to the require section of your composer.json.
|