当前位置:首页 > CMS教程 > 其它CMS > 列表

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中添加如下内容:

  1. 'modules'=>array
  2.         'admin'=>array
  3.             'preload'=>array('<span class='wp_keywordlink_affiliate'><a href="http://lxy.me/tag/bootstrap" title="查看 bootstrap 中的全部文章" target="_blank">bootstrap</a></span>'), 
  4.             'components'=>array
  5.                 '<span class='wp_keywordlink_affiliate'><a href="http://lxy.me/tag/bootstrap" title="查看 bootstrap 中的全部文章" target="_blank">bootstrap</a></span>'=>array
  6.                     'class'=>'ext.bootstrap.components.Bootstrap' 
  7.             ) 
  8.         ), 
  9.     // ...其他模块... 
  10.     )  

2.在模块初始化时加载,代码如下:

  1. public function init() 
  2.     // import the module-level models and components 
  3.     $this->setImport(array
  4.         'admin.models.*'
  5.         'admin.components.*'
  6.         // 'ext.bootstrap.components.Bootstrap', // this will go to app config for components 
  7.     )); 
  8.     Yii::app()->getComponent('bootstrap');// this does the loading 

3.模块初始化加载的另一种方法:

  1. public function init() 
  2.     { 
  3.         // import the module-level models and components 
  4.         $this->setImport(array
  5.             'admin.models.*'
  6.             'admin.components.*'
  7.         )); 
  8.         $this->configure(array
  9.                 'components'=>array
  10.                     'bootstrap'=>array
  11.                         'class'=>'ext.bootstrap.components.Bootstrap' 
  12.                     ) 
  13.                 ) 
  14.         )); 
  15.         $this->getComponent('bootstrap'); 
  16.     } 

4.模块加载时的另一种方法,代码如下:

  1. public function init() 
  2.     // import the module-level models and components 
  3.     $this->setImport(array
  4.         'admin.models.*'
  5.         'admin.components.*'
  6.     )); 
  7.     $this->configure(array
  8.             'preload'=>array('bootstrap'), 
  9.             'components'=>array
  10.                 'bootstrap'=>array
  11.                     'class'=>'ext.bootstrap.components.Bootstrap' 
  12.                 ) 
  13.             ) 
  14.     )); 
  15.     $this->preloadComponents(); 
  16. }

Tags: Yii module 加载 Bootstrap

分享到: