Hi,
In the main.php config file you can configure under ‘import’ => … which classes you want to autoload.
Example:
'import'=>array(
'application.models.*',
'application.components.*',
),
Here it loadas all classes in the folder models and components. whats the best solution withouth to write all subfolders etc here, to load also the classes in the subfolders in models etc.?
thanks for help.