CHANGELOG.md 1.45 KB
Newer Older
1 2 3
Yii Framework 2 smarty extension Change Log
===========================================

Qiang Xue committed
4 5 6
2.0.0-rc under development
--------------------------

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
- Enh #4619 (samdark, hwmaier)
    - New functions:
        - `url` generates absolute URL.
        - `set` allows setting commonly used view paramters: `title`, `theme` and `layout`.
        - `meta` registers meta tag.
        - `registerJsFile` registers JavaScript file.
        - `registerCssFile` registers CSS file.
        - `use` allows importing classes to the template and optionally provides these as functions and blocks.
    - New blocks:
        - `title`.
        - `description`.
        - `registerJs`.
        - `registerCss`.
    - New modifier `void` that allows calling functions and ignoring result.
    - Moved most of Yii custom syntax into `\yii\smarty\Extension` class that could be extended via `extensionClass` property.
    - Added ability to set Smarty options via config using `options`.
    - Added `imports` property that accepts an array of classes imported into template namespace.
    - Added `widgets` property that can be used to import widgets as Smarty tags.
    - `Yii::$app->params['paramKey']` values are now accessible as Smarty config variables `{#paramKey#}`.
    - Added ability to use Yii aliases in `extends` and `require`.
Qiang Xue committed
27

28 29
2.0.0-beta April 13, 2014
-------------------------
30 31 32

- no changes in this release.

Carsten Brandt committed
33
2.0.0-alpha, December 1, 2013
34 35 36
-----------------------------

- Initial release.