我一直在尝试在 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',
),
),
);
任何人都可以请帮忙。