Yii中单独为module加载Bootstrap或其他组件的4种方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-07 15:10:18 浏览: 评论:0
Bootstrap中包含了丰富的Web组件,根据这些组件,可以快速的搭建一个漂亮、功能完备的网站,但是有时候我们网站前台并不需要Bootstrap,只要管理后台使用Bootstrap,那么该如何单独为一个module加载Bootstrap呢?
这里有4种方法来实现这个:
1.在应用的配置文件protected/config/main.php中添加如下内容:
- 'modules'=>array(
- 'admin'=>array(
- 'preload'=>array('<span class='wp_keywordlink_affiliate'><a href="http://lxy.me/tag/bootstrap" title="查看 bootstrap 中的全部文章" target="_blank">bootstrap</a></span>'),
- 'components'=>array(
- '<span class='wp_keywordlink_affiliate'><a href="http://lxy.me/tag/bootstrap" title="查看 bootstrap 中的全部文章" target="_blank">bootstrap</a></span>'=>array(
- 'class'=>'ext.bootstrap.components.Bootstrap'
- )
- ),
- // ...其他模块...
- )
2.在模块初始化时加载,代码如下:
- public function init()
- {
- // import the module-level models and components
- $this->setImport(array(
- 'admin.models.*',
- 'admin.components.*',
- // 'ext.bootstrap.components.Bootstrap', // this will go to app config for components
- ));
- Yii::app()->getComponent('bootstrap');// this does the loading
- }
3.模块初始化加载的另一种方法:
- public function init()
- {
- // import the module-level models and components
- $this->setImport(array(
- 'admin.models.*',
- 'admin.components.*',
- ));
- $this->configure(array(
- 'components'=>array(
- 'bootstrap'=>array(
- 'class'=>'ext.bootstrap.components.Bootstrap'
- )
- )
- ));
- $this->getComponent('bootstrap');
- }
4.模块加载时的另一种方法,代码如下:
- public function init()
- {
- // import the module-level models and components
- $this->setImport(array(
- 'admin.models.*',
- 'admin.components.*',
- ));
- $this->configure(array(
- 'preload'=>array('bootstrap'),
- 'components'=>array(
- 'bootstrap'=>array(
- 'class'=>'ext.bootstrap.components.Bootstrap'
- )
- )
- ));
- $this->preloadComponents();
- }
Tags: Yii module 加载 Bootstrap
相关文章
- ·yii2超好用的日期组件和时间组件(2019-07-30)
- ·详解PHP的Yii框架中扩展的安装与使用(2019-10-20)
- ·PHP的Yii框架中过滤器相关的使用总结(2019-10-31)
- ·简介PHP的Yii框架中缓存的一些高级用法(2019-10-31)
- ·深入解析PHP的Yii框架中的缓存功能(2019-11-05)
- ·PHP的Yii框架中创建视图和渲染视图的方法详解(2019-11-05)
- ·PHP的Yii框架中Model模型的学习教程(2019-11-05)
- ·详解PHP的Yii框架中的Controller控制器(2019-11-05)
- ·yii2的ActiveForm表单使用的方法介绍(2020-02-15)
- ·Yii2框架的csrf验证原理分析及token缓存解决方案(2020-04-05)
- ·Yii操作数据库的3种方法(2020-10-26)
- ·yii上传文件或图片实例(2020-11-05)
- ·yii框架表单模型使用及以数组形式提交表单数据示例(2020-11-25)
- ·yii框架通过控制台命令创建定时任务示例(2020-11-25)
- ·yii框架配置默认controller和action示例(2020-11-25)
- ·在Yii框架中使用PHP模板引擎Twig的例子(2021-02-19)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)