Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am try create CRUD Through GII in YII Framework in modules folder .But there one option to change the curd path .

Thanks

share|improve this question
You seem to be missing your first attempt at code – random Apr 29 '11 at 12:09

2 Answers

  • module-name/user generates module-name/UserController.php. If the application has an module-name module enabled, it will generate UserController (and other CRUD code) within the module module-name instead.
share|improve this answer

I looked around for this too. Hope this will help.

  1. Create a module via Module Generator.
  2. Register your module name in the config main.php (modules array)
  3. Create a model via Model Generator. Fill in the fields and put this in Model Path : application.modules.[module-name].models
  4. Create crud via Crud Generator. Fill in the fields and put this in Model Class: [module-name].models.[model-name]

Sorry the reference is in Indonesian. Source

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.