Have you ever found yourself stuck when you put some custom code inside a model file generated and for some reason need to regenerate the same model using Gii? For these reason I created this gii's generator to apply the following design pattern.
Every time you generate a model two files will be created. One as a abstract class named as BaseUser.php and saved inside protected/models/base and another concrete class named User.php extending the BaseUser.php and saved inside protected/models. All rules generate by gii will be printed inside the abstract class. If you need to customize some aspect of the User you will need to modify the concrete class.
The generator provide an flexible way to enable/disable the generation of the concrete class. This way we avoid the problem of lose our custom code that usually would be overridden by a schema modification.
The paths described above can be modified during the generation process.
... 'modules' => array( 'gii' => array( 'class' => 'system.gii.GiiModule', 'password' => 'gii', 'generatorPaths' => array( 'application.gii.generators', ), 'ipFilters' => array('127.0.0.1', '::1'), ), ), ...
Total 5 comments
sorry, just updated to yii 1.1.2 and no make better
github repo:
https://github.com/developerworks/abstractmodelgenerator
Have you try Giix? It can do the same thing, if there any advantages of your extension?
I filled in an issue but I think that qiang.xue don't agree with us. Well, at least we have the extension to work for us.
Great extension. It should be part of Yii core. Maybe in version 1.1.9... :)
Leave a comment
Please login to leave your comment.