Yii で Twitter ブートストラップ拡張機能を実装しようとしていますが、実行できません。
以下のガイドに従って、Yii でインストールします。
http://www.cniska.net/yii-bootstrap/setup.html
上記のガイドで説明されているように、メインの構成ファイルに次のコードをコピーして貼り付けました。
// Define a path alias for the Bootstrap extension as it's used internally.
// In this example we assume that you unzipped the extension under protected/extensions.
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
return array(
'theme'=>'bootstrap', // requires you to copy the theme under your themes directory
'modules'=>array(
'gii'=>array(
'generatorPaths'=>array(
'bootstrap.gii',
),
),
),
'components'=>array(
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
),
);
誰でも助けてください。