FormTestTableForm.php in Zircon Profile 8
Same filename and directory in other branches
Contains \Drupal\form_test\Form\FormTestTableForm.
Namespace
Drupal\form_test\FormFile
core/modules/system/tests/modules/form_test/src/Form/FormTestTableForm.phpView source
<?php
/**
* @file
* Contains \Drupal\form_test\Form\FormTestTableForm.
*/
namespace Drupal\form_test\Form;
use Drupal\Core\Form\FormStateInterface;
class FormTestTableForm extends FormTestTableSelectFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return '_form_test_table_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['table'] = [
'#type' => 'table',
'#tableselect' => TRUE,
'#empty' => $this
->t('Empty text.'),
];
$form['table']['row'] = [
'data' => [
'#title' => '<em>kitten</em>',
'#markup' => '<p>some text</p>',
],
];
$form['table']['another_row'] = [
'data' => [
'#title' => $this
->t('my favourite fruit is <strong>@fruit</strong>', [
'@fruit' => 'bananas',
]),
'#markup' => '<p>some more text</p>',
],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
}
}
Classes
Name | Description |
---|---|
FormTestTableForm |