You are here

public function DataStreamTypeForm::form in farmOS 2.x

Gets the actual form array to be built.

Overrides EntityForm::form

See also

\Drupal\Core\Entity\EntityForm::processForm()

\Drupal\Core\Entity\EntityForm::afterBuild()

File

modules/core/data_stream/src/Form/DataStreamTypeForm.php, line 16

Class

DataStreamTypeForm
Form controller for data stream type entities.

Namespace

Drupal\data_stream\Form

Code

public function form(array $form, FormStateInterface $form_state) {
  $form = parent::form($form, $form_state);
  $asset_type = $this->entity;
  $form['label'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Label'),
    '#maxlength' => 255,
    '#default_value' => $asset_type
      ->label(),
    '#description' => $this
      ->t('Label for the data stream type.'),
    '#required' => TRUE,
  ];
  $form['id'] = [
    '#type' => 'machine_name',
    '#default_value' => $asset_type
      ->id(),
    '#machine_name' => [
      'exists' => '\\Drupal\\data_stream\\Entity\\DataStreamType::load',
    ],
    '#disabled' => !$asset_type
      ->isNew(),
  ];
  $form['description'] = [
    '#type' => 'textarea',
    '#title' => $this
      ->t('Description'),
    '#default_value' => $asset_type
      ->getDescription(),
  ];
  return $form;
}