Note: Latest release and documentation are availble from extension page at github.
This extension allows you to use Dwoo templates in Yii.
Resources ¶
Requirements ¶
- Yii 1.0 or above
Installation ¶
- Extract the release file under
protected/extensions
. - Download and extract Dwoo (dwoo-x.x.x.tar\dwoo) under
protected/vendors/Dwoo
. - Add the following to your config file 'components' section:
'viewRenderer'=>array(
'class'=>'ext.yiiext.renderers.dwoo.EDwooViewRenderer',
'fileExtension' => '.tpl',
//'pluginsDir' => 'application.dwooPlugins',
),
Usage ¶
- Dwoo syntax.
- Current controller properties are accessible via {$this->pageTitle}.
- Yii properties are available as follows: {$Yii->theme->baseUrl}.
- Used memory is stored in {$MEMORY}, used time is in {$TIME}.
Change Log ¶
0.9.2 ¶
- Fixed renderFile method (Sam Dark)
0.9.1 ¶
- Changed translation category to 'yiiext'.
- New naming conventions.
- readme_ru.
- Added Yii varialbe.
- Added TIME and MEMORY variables.
0.9 ¶
- Initial public release (Sam Dark)
Using widgets
Hi,
how do I use widgets?
I tired it:
{$this->widget('CLinkPager', array( 'pages' => $pages, 'cssFile'=> '', 'header'=>'', ))}
But it not work!
array syntax
did you try array syntax as described in http://wiki.dwoo.org/index.php/Helpers:array?
widget
Thanks your reply, CeBe. I think I want to know how to use Object's method in the view, and your suggest is use Object's data, am i right?
???
@aidai524 I don't have a clue what your question is about.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.