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
ed8b5bd7
Commit
ed8b5bd7
authored
May 01, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Smarty: added path function and exposed $app and $this
parent
23f5b504
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
0 deletions
+50
-0
view_renderers.md
docs/view_renderers.md
+16
-0
SmartyViewRenderer.php
framework/renderers/SmartyViewRenderer.php
+34
-0
No files found.
docs/view_renderers.md
View file @
ed8b5bd7
...
...
@@ -65,3 +65,18 @@ or `$this->renderPartial()` from your controller:
```
php
echo
$this
->
render
(
'renderer.tpl'
,
array
(
'username'
=>
'Alex'
));
```
### Additional functions
Additionally to regular Smarty syntax the following is available in Yii:
```
php
<a
href=
"{path route='blog/view' alias=$post.alias}"
>
{$post.title}
</a>
```
path function calls
`Html::url()`
internally.
### Additional variables
-
`$app`
=
`\Yii::$app`
-
`$this`
= current
`View`
object
\ No newline at end of file
framework/renderers/SmartyViewRenderer.php
View file @
ed8b5bd7
...
...
@@ -13,6 +13,7 @@ use Yii;
use
Smarty
;
use
yii\base\View
;
use
yii\base\ViewRenderer
;
use
yii\helpers\Html
;
/**
* SmartyViewRenderer allows you to use Smarty templates in views.
...
...
@@ -48,6 +49,34 @@ class SmartyViewRenderer extends ViewRenderer
$this
->
smarty
=
new
Smarty
();
$this
->
smarty
->
setCompileDir
(
Yii
::
getAlias
(
$this
->
compilePath
));
$this
->
smarty
->
setCacheDir
(
Yii
::
getAlias
(
$this
->
cachePath
));
$this
->
smarty
->
registerPlugin
(
'function'
,
'path'
,
array
(
$this
,
'smarty_function_path'
));
}
/**
* Smarty template function to get a path for using in links
*
* Usage is the following:
*
* {path route='blog/view' alias=$post.alias user=$user.id}
*
* where route is Yii route and the rest of parameters are passed as is.
*
* @param $params
* @param \Smarty_Internal_Template $template
*
* @return string
*/
public
function
smarty_function_path
(
$params
,
\Smarty_Internal_Template
$template
)
{
if
(
!
isset
(
$params
[
'route'
]))
{
trigger_error
(
"path: missing 'route' parameter"
);
}
array_unshift
(
$params
,
$params
[
'route'
])
;
unset
(
$params
[
'route'
]);
return
Html
::
url
(
$params
);
}
/**
...
...
@@ -67,6 +96,10 @@ class SmartyViewRenderer extends ViewRenderer
$ext
=
pathinfo
(
$file
,
PATHINFO_EXTENSION
);
/** @var \Smarty_Internal_Template $template */
$template
=
$this
->
smarty
->
createTemplate
(
$file
,
null
,
null
,
$params
,
true
);
$template
->
assign
(
'app'
,
\Yii
::
$app
);
$template
->
assign
(
'this'
,
$view
);
return
$template
->
fetch
();
}
}
\ No newline at end of file
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