博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在YII框架中添加BOOTSTRAP组件
阅读量:6076 次
发布时间:2019-06-20

本文共 1409 字,大约阅读时间需要 4 分钟。

hot3.png

1.下载yii-bootstrap 下载地址 http://ttp://phpwl.ueware.com/wp-content/uploads/2015/06/yii-bootstrap.zip2.解压后将文件修改名字为bootstrap并拷贝到项目protected/extensions下3.修改配置文件main.phpYii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');/*定义别名*/'gii'=>array(	'class'=>'system.gii.GiiModule',	'password'=>'Enter Your Password Here',	// If removed, Gii defaults to localhost only. Edit carefully to taste.	'ipFilters'=>array('127.0.0.1','::1'),	'generatorPaths'=>array(  //添加一个gii检索的路径          'bootstrap.gii',       ),),'components'=>array(  'bootstrap'=>array(//添加一个新的bootstrap容器     'class'=>'bootstrap.components.Bootstrap', //执行Bootstrap.php文件   ),4.修改view  /views/layouts/main.php在header里面添加
bootstrap->register(); ?>/*将所有bootstrap中的文件导入*/demo:菜单
widget('bootstrap.widgets.TbNavbar', array(    'items'=>array(        array(            'class'=>'bootstrap.widgets.TbMenu',            'items'=>array(                array(                    'encodeLabel'=>false,                    'linkOptions'=> array('encode'=>false),                    'label'=> '首页',  'url'=>'',                    'items'=>array(                        array('label'=>'Account info', 'url'=>'#'),                        '---',                        array('label'=>'Logout', 'url'=>'#'),                    )                ),            ),        ),    ),)); ?>

转载于:https://my.oschina.net/u/234439/blog/472147

你可能感兴趣的文章
Python爬虫之Scrapy框架介绍
查看>>
【示例】手把手教你构建一个简单的JavaWeb应用(会员注册唯一性检查,不带数据库)...
查看>>
javascript时间函数
查看>>
[HDFS_add_3] HDFS 机架感知
查看>>
20120807
查看>>
PIE SDK大气校正
查看>>
eclipse的配置
查看>>
牛客假日团队赛1 J.分组
查看>>
FORM 中输入一条记录自动保存?如何做到
查看>>
唯独百度上不去
查看>>
Python写xml文件
查看>>
Mysql表分区几种方式
查看>>
人性的弱点
查看>>
Servlet生命周期
查看>>
Dynamics 365 WebResourceUtility 工具更新
查看>>
特殊代码处理
查看>>
[LeetCode]题解(python):079-Word Search
查看>>
OPENGL半透明图像产生黑色光环
查看>>
我的学习路线
查看>>
day16-jQuery扩展以及自执行函数的应用
查看>>