keun e755510f00 Ajouter au dépot le dossier "vendor" | il y a 8 ans | |
---|---|---|
.. | ||
ActiveField.php | il y a 8 ans | |
ActiveForm.php | il y a 8 ans | |
Alert.php | il y a 8 ans | |
BootstrapAsset.php | il y a 8 ans | |
BootstrapPluginAsset.php | il y a 8 ans | |
BootstrapThemeAsset.php | il y a 8 ans | |
Button.php | il y a 8 ans | |
ButtonDropdown.php | il y a 8 ans | |
ButtonGroup.php | il y a 8 ans | |
CHANGELOG.md | il y a 8 ans | |
Carousel.php | il y a 8 ans | |
Collapse.php | il y a 8 ans | |
Dropdown.php | il y a 8 ans | |
Modal.php | il y a 8 ans | |
Nav.php | il y a 8 ans | |
NavBar.php | il y a 8 ans | |
Progress.php | il y a 8 ans | |
README.md | il y a 8 ans | |
Tabs.php | il y a 8 ans | |
Widget.php | il y a 8 ans | |
composer.json | il y a 8 ans |
This is the Twitter Bootstrap extension for Yii 2. It encapsulates Bootstrap components and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins in Yii applications extremely easy.
This repository is a git submodule of https://github.com/yiisoft/yii2. Please submit issue reports and pull requests to the main repository. For license information check the LICENSE-file.
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.
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']) ?>