私はYiiを初めて使用し、Twitter Bootstrap拡張機能を実装したいと思っていました 。cniskaをフォローしましたが、どうやら何か間違ったことをしているようです。
拡張コードを使用してブラウザにページをロードすると、画像/効果がロードされません。
私のhtmlページで、この単純なトグルボタンがここにあります。
<?php $this->widget('bootstrap.widgets.TbButton', array(
'buttonType'=>'button',
'type'=>'primary',
'label'=>'Toggle me',
'toggle'=>true,
)); ?>
これにより、クラスが適用されていない単純なHTMLボタン、つまり「裸の」スタイルボタンを実行したかのようになります。
私のconfig/main.php:
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'Test App',
// preloading 'log' component
'preload'=>array('log'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
),
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'<password>',
'ipFilters'=>array('127.0.0.1','::1'),
),
),
'components'=>array(
'user'=>array(
'allowAutoLogin'=>true,
),
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
'theme'=>'bootstrap', -// requires you to copy the theme under your themes directory
'modules'=>array(
'gii'=>array(
'generatorPaths'=>array(
'bootstrap.gii',
),
),
),
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=<bdname>',
'emulatePrepare' => true,
'username' => '<bd username>',
'password' => '<bd password>',
'charset' => 'utf8',
),
'errorHandler'=>array(
'errorAction'=>'site/error',
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
),
),
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'webmaster@example.com',
),
);
また、今週Yiiのフレームワークと拡張機能をダウンロードしたので、最新バージョンがあると思います。任意のヒント?
前もって感謝します