_form.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
    
    use artweb\artbox\design\models\Slider;
    use yii\helpers\Html;
    use yii\widgets\ActiveForm;
    use kartik\select2\Select2;
    
    /* @var $this yii\web\View */
    /* @var $model Slider */
    /* @var $form yii\widgets\ActiveForm */
?>
<div class="slider-form">
    
    <?php $form = ActiveForm::begin(); ?>
    
    <?= $form->field($model, 'speed')
             ->textInput() ?>
    
    <?= $form->field($model, 'duration')
             ->textInput() ?>
    
    <?= $form->field($model, 'title')
             ->textInput([ 'maxlength' => true ]) ?>
    <?= $form->field($model, 'status')
             ->widget(
                 Select2::className(),
                 ( [
                     'name'          => 'status',
                     'hideSearch'    => true,
                     'data'          => [
                         1 => 'Active',
                         2 => 'Inactive',
                     ],
                     'options'       => [ 'placeholder' => 'Select status...' ],
                     'pluginOptions' => [
                         'allowClear' => true,
                     ],
                 ] )
             ) ?>
    
    <div class="form-group">
        <?= Html::submitButton(
            $model->isNewRecord ? Yii::t('app', 'Create') : Yii::t('app', 'Update'),
            [ 'class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary' ]
        ) ?>
    </div>
    
    <?php ActiveForm::end(); ?>
</div>