FormTestTableSelectEmptyForm.php

Same filename in other branches
  1. 8.9.x core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectEmptyForm.php
  2. 10 core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectEmptyForm.php
  3. 11.x core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectEmptyForm.php

Namespace

Drupal\form_test\Form

File

core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectEmptyForm.php

View source
<?php

namespace Drupal\form_test\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Builds a form to test table select with '#options' set to empty.
 *
 * @internal
 */
class FormTestTableSelectEmptyForm extends FormTestTableSelectFormBase {
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return '_form_test_tableselect_empty_form';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        return $this->tableselectFormBuilder($form, $form_state, [
            '#options' => [],
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitForm(array &$form, FormStateInterface $form_state) {
    }

}

Classes

Title Deprecated Summary
FormTestTableSelectEmptyForm Builds a form to test table select with '#options' set to empty.

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