public function AccessSchemeAddForm::form in Workbench Access 8
Gets the actual form array to be built.
Overrides EntityForm::form
See also
\Drupal\Core\Entity\EntityForm::processForm()
\Drupal\Core\Entity\EntityForm::afterBuild()
File
- src/
Form/ AccessSchemeAddForm.php, line 51
Class
- AccessSchemeAddForm
- Defines a form for adding access schemes.
Namespace
Drupal\workbench_access\FormCode
public function form(array $form, FormStateInterface $form_state) {
$form = parent::form($form, $form_state);
$access_scheme = $this->entity;
$form['label'] = [
'#type' => 'textfield',
'#title' => $this
->t('Label'),
'#maxlength' => 255,
'#default_value' => $access_scheme
->label(),
'#description' => $this
->t("Label for the Access scheme."),
'#required' => TRUE,
];
$form['id'] = [
'#type' => 'machine_name',
'#default_value' => $access_scheme
->id(),
'#machine_name' => [
'exists' => '\\Drupal\\workbench_access\\Entity\\AccessScheme::load',
],
'#disabled' => !$access_scheme
->isNew(),
];
$form['plural_label'] = [
'#type' => 'textfield',
'#title' => $this
->t('Plural Label'),
'#maxlength' => 255,
'#default_value' => $access_scheme
->getPluralLabel(),
'#description' => $this
->t("Plural Label for the Access scheme."),
'#required' => TRUE,
];
$form['scheme'] = [
'#type' => 'select',
'#title' => $this
->t('Access scheme'),
'#options' => array_map(function (array $definition) {
return $definition['label'];
}, $this->pluginManager
->getDefinitions()),
'#description' => $this
->t('Select the access scheme provider to use.'),
'#required' => TRUE,
];
return $form;
}