Commit 881a85d4 by Qiang Xue

Fixed doc about renderers.

parent 2707c228
...@@ -136,23 +136,9 @@ with significant improvements. For more details, please see the "assets" subsect ...@@ -136,23 +136,9 @@ with significant improvements. For more details, please see the "assets" subsect
While Yii 2.0 continues to use PHP as its main template language, it comes with built-in While Yii 2.0 continues to use PHP as its main template language, it comes with built-in
support for two popular template engines: Smarty and Twig. The Prado template engine is support for two popular template engines: Smarty and Twig. The Prado template engine is
no longer supported. To use these template engines, simply configure the "view" application no longer supported. To use these template engines, you just need to use `tpl` as the file
component as follows, extension for your Smarty views, or `twig` for Twig views. You may also configure the
`View::renderers` property to use other template engines.
~~~
'view' => array(
'renders' => array(
array(
'tpl' => array(
'class' => 'yii\renderers\SmartyRenderer',
),
'twig' => array(
'class' => 'yii\renderers\TwigRenderer',
),
)
),
)
~~~
Models Models
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment