Browse Source

Added code example.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
9e1fa1f7a4
  1. 15
      framework/yii/web/AssetManager.php

15
framework/yii/web/AssetManager.php

@ -41,9 +41,18 @@ use yii\helpers\FileHelper;
class AssetManager extends Component class AssetManager extends Component
{ {
/** /**
* @var array list of available asset bundles. The keys are the class names of the asset bundles, * @var array list of available asset bundles. The keys are the class names (without leading backslash)
* and the values are either the configuration arrays for creating the [[AssetBundle]] objects * of the asset bundles, and the values are either the configuration arrays for creating the [[AssetBundle]]
* or the corresponding asset bundle instances. * objects or the corresponding asset bundle instances. For example, the following code disables
* the bootstrap css file used by Bootstrap widgets (because you want to use your own styles):
*
* ~~~
* [
* 'yii\bootstrap\BootstrapAsset' => [
* 'css' => [],
* ],
* ]
* ~~~
*/ */
public $bundles = []; public $bundles = [];
/** /**

Loading…
Cancel
Save