Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dmtrs/gii-extension-generator

Gii extension for widget creation.
https://github.com/dmtrs/gii-extension-generator

Last synced: about 2 months ago
JSON representation

Gii extension for widget creation.

Awesome Lists containing this project

README

        

gii-extension-generator
=======================
Gii extension generator to produce common code used in extensions.

- Version: 0.1.1
- Author: Dimitrios Mengidis

###Why
I am developing a lot of extensions lately and i have found my self creating a template with common code for widget.
I have been cutting and adding things for diff widget ( some use jquery some not, some have css some others not ...etc ),
so with the power of gii i am able to create a much more better approach for my widget templates.

###Config
Add files under webapp/protected/gii/widget/ folder and then add

'gii'=>array(
...
'generatorPaths'=>array(
'application.gii'
),
...
),

to your

protected/config/main.php file

__Do not extract it like webapp/protected/gii/gii-extension-generator/ , cause it won't work :)__

###Known issue
**{RESOLVED}** [Checkbox disappear](http://code.google.com/p/yii/issues/detail?id=2359). I came up on this bug while creating this extension.
To overcome/workaround and test the extension you must find the asset folder that is published at that view and remove the main.js file.
You will lose the 'Preview' and the 'Check All' functionality at that view.
After you are done delete that asset folder so it will be recreated.

###Resources
- [Yii Guide: Automatic Code Generation](http://www.yiiframework.com/doc/guide/1.1/en/topics.gii)
- [Fork me at github](https://github.com/dmtrs/gii-extension-generator)

###Changelog
####Version: 0.1.1
- Bug: Checkbox disappear bug resolved.

####Version: 0.1
- Added core scripts register.
- Added assets property which publish and registers js and css files
- Added widgetName, widgetClass properties.