FormTestEmptySelectForm.php
Same filename in other branches
Namespace
Drupal\form_test\FormFile
-
core/
modules/ system/ tests/ modules/ form_test/ src/ Form/ FormTestEmptySelectForm.php
View source
<?php
declare (strict_types=1);
namespace Drupal\form_test\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Builds a form to test select elements when #options is not an array.
*
* @internal
*/
class FormTestEmptySelectForm extends FormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_empty_select';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['empty_select'] = [
'#type' => 'select',
'#title' => t('Empty Select'),
'#multiple' => FALSE,
'#options' => NULL,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FormTestEmptySelectForm | Builds a form to test select elements when #options is not an array. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.