FormTestTableSelectMultipleFalseForm.php in Zircon Profile 8
File
core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectMultipleFalseForm.php
View source
<?php
namespace Drupal\form_test\Form;
use Drupal\Core\Form\FormStateInterface;
class FormTestTableSelectMultipleFalseForm extends FormTestTableSelectFormBase {
public function getFormId() {
return '_form_test_tableselect_multiple_false_form';
}
public function buildForm(array $form, FormStateInterface $form_state) {
return $this
->tableselectFormBuilder($form, $form_state, array(
'#multiple' => FALSE,
));
}
public function submitForm(array &$form, FormStateInterface $form_state) {
drupal_set_message(t('Submitted: @value', array(
'@value' => $form_state
->getValue('tableselect'),
)));
}
}