function FormTestCheckboxesZeroForm::buildForm

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/form_test/src/Form/FormTestCheckboxesZeroForm.php \Drupal\form_test\Form\FormTestCheckboxesZeroForm::buildForm()
  2. 10 core/modules/system/tests/modules/form_test/src/Form/FormTestCheckboxesZeroForm.php \Drupal\form_test\Form\FormTestCheckboxesZeroForm::buildForm()
  3. 11.x core/modules/system/tests/modules/form_test/src/Form/FormTestCheckboxesZeroForm.php \Drupal\form_test\Form\FormTestCheckboxesZeroForm::buildForm()

Overrides FormInterface::buildForm

File

core/modules/system/tests/modules/form_test/src/Form/FormTestCheckboxesZeroForm.php, line 26

Class

FormTestCheckboxesZeroForm
Tests checkboxes zero.

Namespace

Drupal\form_test\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, $json = TRUE) {
    $form_state->set('json', $json);
    $form['checkbox_off'] = [
        '#title' => t('Checkbox off'),
        '#type' => 'checkboxes',
        '#options' => [
            'foo',
            'bar',
            'baz',
        ],
    ];
    $form['checkbox_zero_default'] = [
        '#title' => t('Zero default'),
        '#type' => 'checkboxes',
        '#options' => [
            'foo',
            'bar',
            'baz',
        ],
        '#default_value' => [
            0,
        ],
    ];
    $form['checkbox_string_zero_default'] = [
        '#title' => t('Zero default (string)'),
        '#type' => 'checkboxes',
        '#options' => [
            'foo',
            'bar',
            'baz',
        ],
        '#default_value' => [
            '0',
        ],
    ];
    $form['submit'] = [
        '#type' => 'submit',
        '#value' => 'Save',
    ];
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.