Google News
logo
Yii framework - Interview Questions
How can you create and work with the different modules in Yii?
To create a module, access the gii url, and there you can create a module. After creating a module, you need to add it to the main configuration file of your Yii application.
localhost/your-app/index.php?r=gii // utl to access gii  
 ....  
   'modules' =>  array(  
                'module-name',  
                 'other-module',  
                  'user' =>  array(  
                        'activeAfterRegister' =>  false,  
                ),  
  .....  
Advertisement