mead cff8596724 init il y a 4 ans
..
ActiveField.php cff8596724 init il y a 4 ans
ActiveForm.php cff8596724 init il y a 4 ans
Alert.php cff8596724 init il y a 4 ans
BaseHtml.php cff8596724 init il y a 4 ans
BootstrapAsset.php cff8596724 init il y a 4 ans
BootstrapPluginAsset.php cff8596724 init il y a 4 ans
BootstrapThemeAsset.php cff8596724 init il y a 4 ans
BootstrapWidgetTrait.php cff8596724 init il y a 4 ans
Button.php cff8596724 init il y a 4 ans
ButtonDropdown.php cff8596724 init il y a 4 ans
ButtonGroup.php cff8596724 init il y a 4 ans
CHANGELOG.md cff8596724 init il y a 4 ans
Carousel.php cff8596724 init il y a 4 ans
Collapse.php cff8596724 init il y a 4 ans
Dropdown.php cff8596724 init il y a 4 ans
Html.php cff8596724 init il y a 4 ans
InputWidget.php cff8596724 init il y a 4 ans
Makefile cff8596724 init il y a 4 ans
Modal.php cff8596724 init il y a 4 ans
Nav.php cff8596724 init il y a 4 ans
NavBar.php cff8596724 init il y a 4 ans
Progress.php cff8596724 init il y a 4 ans
README.md cff8596724 init il y a 4 ans
Tabs.php cff8596724 init il y a 4 ans
ToggleButtonGroup.php cff8596724 init il y a 4 ans
Widget.php cff8596724 init il y a 4 ans
composer.json cff8596724 init il y a 4 ans

README.md

Twitter Bootstrap Extension for Yii 2

This is the Twitter Bootstrap extension for Yii framework 2.0. It encapsulates Bootstrap components and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins in Yii applications extremely easy.

For license information check the LICENSE-file.

Documentation is at docs/guide/README.md.

Latest Stable Version Total Downloads Build Status

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiisoft/yii2-bootstrap

or add

"yiisoft/yii2-bootstrap": "~2.0.0"

to the require section of your composer.json file.

Usage

For example, the following single line of code in a view file would render a Bootstrap Progress plugin:

<?= yii\bootstrap\Progress::widget(['percent' => 60, 'label' => 'test']) ?>