I can force to inlcude one model by
Yii::import("application.models.modelName", true);
What should I do to include all models from models directory?
Line:
Yii::import("application.models.*", true);
doesn't work becouse yii import only when there is need to use it.