首页 > 代码库 > Yii中单独为module加载Bootstrap或其他组件的4种方法
Yii中单独为module加载Bootstrap或其他组件的4种方法
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://www.mamicode.com/"http://lxy.me/tag/bootstrap" title="查看bootstrap中的全部文章" target="_blank">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(); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。