PHP code example of phpnt / awesome-bootstrap-checkbox

1. Go to this page and download the library: Download phpnt/awesome-bootstrap-checkbox library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

phpnt / awesome-bootstrap-checkbox example snippets



use yii\bootstrap\Html;
use yii\bootstrap\ActiveForm;
use phpnt\awesomeBootstrapCheckbox\AwesomeBootstrapCheckboxAsset;

AwesomeBootstrapCheckboxAsset::register($this);
// Теперь, все элементы input с типом checkbox или radio, обернутые в класс checkbox будут стилизованые
// массив элементов
$items = [
    1 => 'Апельсин',
    2 => 'Бочка',
    3 => 'Велосипед',
    4 => 'Гризли',
    5 => 'Дом',
];
// Использование в активной форме
$form = ActiveForm::begin();
    // Вертикальное расположение
    echo $form->field($model, 'id')
        ->checkboxList(
            $items,
            [
                'item' => function ($index, $label, $name, $checked, $value){
                    return '<div class="checkbox-info checkbox">
                                <input type="checkbox" id="check-'.$index.'" name="Model['.$name.'][]" value="'.$value.'" checked>
                                <label for="check-'.$index.'">'.$label.'</label>
                            </div>';
                }
            ]);
    // Горизонтальное расположение
    echo $form->field($model, 'id')
        ->radioList(
            $items,
            [
                'class' => 'radio radio-success radio-inline',
                'item' => function ($index, $label, $name, $checked, $value){
                    return '<input type="radio" id="check-h-'.$index.'" name="Model['.$name.'][]" value="0">
                                <label for="check-h-'.$index.'">'.$label.'</label>';
                }
            ])->inline(true);
ActiveForm::end();

//Использование без активной формы
// Вертикальное расположение
Html::checkboxList('item', null, $items, [
    'class' => 'checkbox checkbox-inline checkbox-warning',
    'item' => function ($index, $label, $name, $checked, $value){
        return '<input type="checkbox" id="check-n-'.$index.'" name="Model['.$name.'][]" value="'.$value.'" checked>
                    <label for="check-n-'.$index.'">'.$label.'</label>';
    }
]);
// Горизонтальное расположение
Html::radioList('item', null, $items, [
    'class' => 'radio radio-danger',
    'item' => function ($index, $label, $name, $checked, $value){
        return '<div><input type="radio" id="check-n2-'.$index.'" name="Model['.$name.'][]" value="'.$value.'">
                    <label for="check-n2-'.$index.'">'.$label.'</label></div>';
    }
]);

php composer.phar