function SwitchUserForm::buildForm
Same name in other branches
- 5.x src/Form/SwitchUserForm.php \Drupal\devel\Form\SwitchUserForm::buildForm()
Overrides FormInterface::buildForm
File
-
src/
Form/ SwitchUserForm.php, line 54
Class
- SwitchUserForm
- Define a form to allow the user to switch and become another user.
Namespace
Drupal\devel\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['autocomplete'] = [
'#type' => 'container',
'#attributes' => [
'class' => [
'container-inline',
],
],
];
$form['autocomplete']['userid'] = [
'#type' => 'entity_autocomplete',
'#title' => $this->t('Username'),
'#placeholder' => $this->t('Enter username'),
'#target_type' => 'user',
'#selection_settings' => [
'include_anonymous' => FALSE,
],
'#process_default_value' => FALSE,
'#maxlength' => UserInterface::USERNAME_MAX_LENGTH,
'#title_display' => 'invisible',
'#required' => TRUE,
'#size' => '28',
];
$form['autocomplete']['actions'] = [
'#type' => 'actions',
];
$form['autocomplete']['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this->t('Switch'),
];
return $form;
}