public function EnvironmentIndicatorForm::form in Environment Indicator 8.3
Same name and namespace in other branches
- 4.x src/EnvironmentIndicatorForm.php \Drupal\environment_indicator\EnvironmentIndicatorForm::form()
This actually builds your form.
Overrides EntityForm::form
File
- src/
EnvironmentIndicatorForm.php, line 16
Class
- EnvironmentIndicatorForm
- Form field specifications.
Namespace
Drupal\environment_indicatorCode
public function form(array $form, FormStateInterface $form_state) {
/* @var \Drupal\environment_indicator\Entity\EnvironmentIndicator $environment_switcher */
$environment_switcher = $this
->getEntity();
$form['name'] = [
'#type' => 'textfield',
'#title' => $this
->t('Name'),
'#default_value' => $environment_switcher
->label(),
];
$form['machine'] = [
'#type' => 'machine_name',
'#machine_name' => [
'source' => [
'name',
],
'exists' => 'environment_indicator_load',
],
'#default_value' => $environment_switcher
->id(),
'#disabled' => !empty($environment_switcher->machine),
];
$form['url'] = [
'#type' => 'url',
'#title' => $this
->t('Hostname'),
'#description' => $this
->t('The hostname you want to switch to.'),
'#default_value' => $environment_switcher
->getUrl(),
];
$form['bg_color'] = [
'#type' => 'color',
'#title' => $this
->t('Background Color'),
'#description' => $this
->t('Background color for the indicator. Ex: #0D0D0D.'),
'#default_value' => $environment_switcher
->getBgColor() ?: '#0D0D0D',
];
$form['fg_color'] = [
'#type' => 'color',
'#title' => $this
->t('Color'),
'#description' => $this
->t('Color for the indicator. Ex: #D0D0D0.'),
'#default_value' => $environment_switcher
->getFgColor() ?: '#D0D0D0',
];
return $form;
}