itchaos / bootstrap-checkbox-bundle
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6.16
- symfony/form: ~2.3
- symfony/framework-bundle: ~2.3
- vsn4ik/bootstrap-checkbox: ~1.4.0
This package is not auto-updated.
Last update: 2025-03-24 16:51:20 UTC
README
This is just simple wrapping bundle for Bootstrap Checkbox.
Minimal Requirements
- php 5.6
- symfony 2.3
- twig 1.0
Instalation
- Add to composer requirements
composer require itchaos/bootstrap-checkbox-bundle
- Register bundle in Your AppKernel
<?php //.. public function registerBundles() { $bundles = array( // ... new ITChaos\Bundle\BootstrapCheckboxBundle\BootstrapCheckboxBundle() // ... ); return $bundles; }
- Add bundle js resources to assetic
assetic: bundles: - BootstrapCheckboxBundle
- Add asset to your layout
{% javascripts '@BootstrapCheckboxBundle' %} <script type="text/javascript" src="{{ asset_url }}"></script>
Usage
Bundle provides you with new form type BootstrapCheckboxType
which descends from regular Symfonys CheckboxType
. It has same usage but is rendered next to label instead inside (as in most
Bootstrap bundles). All properties for bootstrap checkbox from vsn4ik/bootstrap-checkbox
are exposed by BootstrapCheckboxType
as described in wrapped plugins documnetation
available here:
BootstrapCheckbox documentation
The main difference is expanding parameter names containing cls
to class
.