public function actionIndex()
{
echo Yii::app()->getModule('users');
}
Выдает ошибку:
public function actionIndex()
{
echo Yii::app()->getModule('users');
}
Цитата |
Object of class UsersModule could not be converted to string |
echo Yii::app()->getModules();
Цитата |
Array |
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'sailenser',
'ipFilters'=>array('127.0.0.1','::1'),
),
//модуль users
'users',
),