Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
185687b0
Commit
185687b0
authored
Apr 27, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.yiisoft.com:yii2
parents
41318785
16880c1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
35 deletions
+25
-35
view_renderers.md
docs/view_renderers.md
+25
-35
No files found.
docs/view_renderers.md
View file @
185687b0
Yii2 view renderers
===================
By default Yii uses PHP as template language but you can change it in your application.
The component responsible for rendering a view is called
`view`
. You can configure
a custom template engine as follows:
By default Yii uses PHP as template language but you can configure it to be able
to render templates with special engines such as Twig or Smarty.
The component responsible for rendering a view is called
`view`
. You can add
a custom template engines as follows:
```
php
array
(
'components'
=>
array
(
'view'
=>
array
(
'class'
=>
'yii\base\View'
,
'renderer'
=>
array
(
'class'
=>
'yii\renderers\TwigViewRenderer'
,
// or 'class' => 'yii\renderers\SmartyViewRenderer',
'renderers'
=>
array
(
'tpl'
=>
array
(
'class'
=>
'yii\renderers\SmartyViewRenderer'
,
),
'twig'
=>
array
(
'class'
=>
'yii\renderers\TwigViewRenderer'
,
),
// ...
),
),
),
...
...
@@ -22,39 +29,23 @@ array(
Twig
----
In order to use Twig you need to put you templates in files with extension
`.twig`
.
In order to use Twig you need to put you templates in files with extension
`.twig`
(or another one if configured differently).
Also you need to specify this extension explicitly when calling
`$this->render()`
or
`$this->renderPartial()`
from your controller.
or
`$this->renderPartial()`
from your controller:
```
php
echo
$this
->
render
(
'renderer.twig'
,
array
(
'username'
=>
'Alex'
));
```
Smarty
------
In order to use Smarty you need to put you templates in files with extension
`.tpl`
.
In order to use Smarty you need to put you templates in files with extension
`.tpl`
(or another one if configured differently).
Also you need to specify this extension explicitly when calling
`$this->render()`
or
`$this->renderPartial()`
from your controller.
Using multiple view renderers in a single application
-----------------------------------------------------
If you need multiple view renderers at the same time in a single application you
can use
`CompositeViewRenderer`
as follows:
or
`$this->renderPartial()`
from your controller:
```
php
'components'
=>
array
(
'view'
=>
array
(
'class'
=>
'yii\base\View'
,
'renderer'
=>
array
(
'class'
=>
'yii\renderers\CompositeViewRenderer'
,
'renderers'
=>
array
(
'tpl'
=>
array
(
'class'
=>
'yii\renderers\SmartyViewRenderer'
,
),
'twig'
=>
array
(
'class'
=>
'yii\renderers\TwigViewRenderer'
,
),
),
//'class' => 'yii\renderers\TwigViewRenderer',
),
),
),
```
\ No newline at end of file
echo
$this
->
render
(
'renderer.tpl'
,
array
(
'username'
=>
'Alex'
));
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment