Autoload Modules?

Can config file auto_load modules and models of them with any maintenance of config file?

In the config file you have to specify the module name so that yii loads it and makes it active then you can just load models as you wish (as you saw in your other thread) simply add:


'modules' => array(

       		'moduleName',

       		'moduleName2'

),

in the root config array.