如何在yii中安装bootstrap扩展

时间:2012-11-08 09:34:44

标签: yii

我是yii的新手并且一直在尝试向yii添加bootstrap和giiplus扩展。但是在将提取的文件添加到extensions文件夹并在main.php中进行更改后,我甚至无法显示甚至是主页面的错误。我遵循了这个教程..

http://www.cniska.net/yii-bootstrap/setup.html

1 个答案:

答案 0 :(得分:7)

here下载扩展程序。

粘贴所有bootstrap扩展文件夹,在extensions / bootstrap

下下载

配置/ main.php

在开始数组之前添加  Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');

在返回数组下添加

'theme'=>'bootstrap',
    'modules'=>array(
        'gii'=>array(
            'generatorPaths'=>array(
                'bootstrap.gii',
            ),                      
        ),
    ),

在组件下添加

        'bootstrap'=>array(
        'class'=>'bootstrap.components.Bootstrap',
         ),

扩展/自举/组件/ bootstrap.php中

在类

中粘贴代码
public function init() {
    $this->registerAllCss();
    $this->registerJs();
    parent::init();
}

保护/视图/布局/ main.php

将该行粘贴在头标记

<?php echo Yii::app()->bootstrap->init();?>

请点击此链接获取文档

http://www.cniska.net/yii-bootstrap/