keun e755510f00 Ajouter au dépot le dossier "vendor" | 8 年之前 | |
---|---|---|
.. | ||
ActiveField.php | 8 年之前 | |
ActiveForm.php | 8 年之前 | |
Alert.php | 8 年之前 | |
BootstrapAsset.php | 8 年之前 | |
BootstrapPluginAsset.php | 8 年之前 | |
BootstrapThemeAsset.php | 8 年之前 | |
Button.php | 8 年之前 | |
ButtonDropdown.php | 8 年之前 | |
ButtonGroup.php | 8 年之前 | |
CHANGELOG.md | 8 年之前 | |
Carousel.php | 8 年之前 | |
Collapse.php | 8 年之前 | |
Dropdown.php | 8 年之前 | |
Modal.php | 8 年之前 | |
Nav.php | 8 年之前 | |
NavBar.php | 8 年之前 | |
Progress.php | 8 年之前 | |
README.md | 8 年之前 | |
Tabs.php | 8 年之前 | |
Widget.php | 8 年之前 | |
composer.json | 8 年之前 |
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']) ?>