199a7d3e274bd74fe76b9de235c863c2a6afb4d1
[yaffs-website] / web / core / modules / system / tests / modules / form_test / src / Form / FormTestTableSelectEmptyForm.php
1 <?php
2
3 namespace Drupal\form_test\Form;
4
5 use Drupal\Core\Form\FormStateInterface;
6
7 class FormTestTableSelectEmptyForm extends FormTestTableSelectFormBase {
8
9   /**
10    * {@inheritdoc}
11    */
12   public function getFormId() {
13     return '_form_test_tableselect_empty_form';
14   }
15
16   /**
17    * {@inheritdoc}
18    */
19   public function buildForm(array $form, FormStateInterface $form_state) {
20     return $this->tableselectFormBuilder($form, $form_state, ['#options' => []]);
21   }
22
23   /**
24    * {@inheritdoc}
25    */
26   public function submitForm(array &$form, FormStateInterface $form_state) {
27   }
28
29 }