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
23f5b504
Commit
23f5b504
authored
May 01, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Twig: added path() function, exposed app and this in templates
parent
b07b0c14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
view_renderers.md
docs/view_renderers.md
+16
-0
TwigViewRenderer.php
framework/renderers/TwigViewRenderer.php
+8
-0
No files found.
docs/view_renderers.md
View file @
23f5b504
...
...
@@ -18,6 +18,7 @@ array(
),
'twig'
=>
array
(
'class'
=>
'yii\renderers\TwigViewRenderer'
,
'twigPath'
=>
'@app/vendors/Twig'
,
),
// ...
),
...
...
@@ -38,6 +39,21 @@ or `$this->renderPartial()` from your controller:
echo
$this
->
render
(
'renderer.twig'
,
array
(
'username'
=>
'Alex'
));
```
### Additional functions
Additionally to regular Twig syntax the following is available in Yii:
```
php
<a
href=
"{{ path('blog/view', {'alias' : post.alias}) }}"
>
{{ post.title }}
</a>
```
path function calls
`Html::url()`
internally.
### Additional variables
-
`app`
=
`\Yii::$app`
-
`this`
= current
`View`
object
Smarty
------
...
...
framework/renderers/TwigViewRenderer.php
View file @
23f5b504
...
...
@@ -12,6 +12,7 @@ namespace yii\renderers;
use
Yii
;
use
yii\base\View
;
use
yii\base\ViewRenderer
;
use
yii\helpers\Html
;
/**
* TwigViewRenderer allows you to use Twig templates in views.
...
...
@@ -53,6 +54,12 @@ class TwigViewRenderer extends ViewRenderer
$this
->
twig
=
new
\Twig_Environment
(
$loader
,
array_merge
(
array
(
'cache'
=>
Yii
::
getAlias
(
$this
->
cachePath
),
),
$this
->
options
));
$this
->
twig
->
addFunction
(
'path'
,
new
\Twig_Function_Function
(
function
(
$path
,
$args
=
array
()){
return
Html
::
url
(
array_merge
(
array
(
$path
),
$args
));
}));
$this
->
twig
->
addGlobal
(
'app'
,
\Yii
::
$app
);
}
/**
...
...
@@ -69,6 +76,7 @@ class TwigViewRenderer extends ViewRenderer
*/
public
function
render
(
$view
,
$file
,
$params
)
{
$this
->
twig
->
addGlobal
(
'this'
,
$view
);
return
$this
->
twig
->
render
(
file_get_contents
(
$file
),
$params
);
}
}
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