keun 1737537122 Mettre en place une map sur la page d'accueil pour présenter les boulangeries partenaires. | 8 年前 | |
---|---|---|
.. | ||
ActiveField.php | 8 年前 | |
ActiveForm.php | 8 年前 | |
Alert.php | 8 年前 | |
BaseHtml.php | 8 年前 | |
BootstrapAsset.php | 8 年前 | |
BootstrapPluginAsset.php | 8 年前 | |
BootstrapThemeAsset.php | 8 年前 | |
BootstrapWidgetTrait.php | 8 年前 | |
Button.php | 8 年前 | |
ButtonDropdown.php | 8 年前 | |
ButtonGroup.php | 8 年前 | |
CHANGELOG.md | 8 年前 | |
Carousel.php | 8 年前 | |
Collapse.php | 8 年前 | |
Dropdown.php | 8 年前 | |
Html.php | 8 年前 | |
InputWidget.php | 8 年前 | |
Makefile | 8 年前 | |
Modal.php | 8 年前 | |
Nav.php | 8 年前 | |
NavBar.php | 8 年前 | |
Progress.php | 8 年前 | |
README.md | 8 年前 | |
Tabs.php | 8 年前 | |
ToggleButtonGroup.php | 8 年前 | |
Widget.php | 8 年前 | |
composer.json | 8 年前 |
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.
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']) ?>