Browse Source

'Asset Bundles' topic added to the docs.

tags/2.0.5
Klimov Paul 9 years ago
parent
commit
2c4ed78a7c
  1. 1
      docs/guide/README.md
  2. 16
      docs/guide/asset-bundles.md

1
docs/guide/README.md

@ -21,6 +21,7 @@ Usage
* [Yii widgets](usage-widgets.md) * [Yii widgets](usage-widgets.md)
* [Html helper](helper-html.md) * [Html helper](helper-html.md)
* [Asset Bundles](asset-bundles.md)
Additional topics Additional topics
----------------- -----------------

16
docs/guide/asset-bundles.md

@ -0,0 +1,16 @@
Asset Bundles
=============
Bootstrap is a complex front-end solution, which includes CSS, JavaScript, fonts and so on.
In order to allow you most flexible control over Bootstrap components, this extension provides several asset bundles.
They are:
- [[yii\bootstrap\BootstrapAsset|BootstrapAsset]] - contains only main CSS files.
- [[yii\bootstrap\BootstrapPluginAsset|BootstrapPluginAsset]] - depends on [[yii\bootstrap\BootstrapAsset]], contains javascript files.
- [[yii\bootstrap\BootstrapThemeAsset|BootstrapThemeAsset]] - depends on [[yii\bootstrap\BootstrapAsset]], contains Bootstrap default theme CSS.
Particular application needs may require different bundle (or bundle combination) usage.
If you need only CSS styles, [[yii\bootstrap\BootstrapAsset]] will be enough for you. However, if
you want to use Bootstrap JavaScript, you need to register [[yii\bootstrap\BootstrapPluginAsset]].
> Tip: most of the widgets register [[yii\bootstrap\BootstrapPluginAsset]] automatically.
Loading…
Cancel
Save