admin モジュールだけに Yii Bootstrap エクステンションをロードしようとしていますが、うまくいきません。プリロードするか、何らかの方法で開始する必要があると思います...ありがとう!
class AdminModule extends CWebModule
{
public function init()
{
// import the module-level models and components
$this->setImport(array(
'admin.models.*',
'admin.components.*',
'ext.bootstrap.components.Bootstrap',
));
}
public function beforeControllerAction($controller, $action)
{
if(parent::beforeControllerAction($controller, $action))
{
$this->layout = 'admin';
return true;
}
else
return false;
}
}