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