public function ConfigTestFormController::form

Overrides Drupal\Core\Entity\EntityFormController::form().

Overrides EntityFormController::form

File

drupal/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestFormController.php, line 21
Contains Drupal\config_test\ConfigTestFormController.

Class

ConfigTestFormController
Form controller for the test config edit forms.

Namespace

Drupal\config_test

Code

public function form(array $form, array &$form_state, EntityInterface $entity) {
  $form = parent::form($form, $form_state, $entity);
  $form['label'] = array(
    '#type' => 'textfield',
    '#title' => 'Label',
    '#default_value' => $entity
      ->label(),
    '#required' => TRUE,
  );
  $form['id'] = array(
    '#type' => 'machine_name',
    '#default_value' => $entity
      ->id(),
    '#required' => TRUE,
    '#machine_name' => array(
      'exists' => 'config_test_load',
    ),
  );
  $form['style'] = array(
    '#type' => 'select',
    '#title' => 'Image style',
    '#options' => array(),
    '#default_value' => $entity
      ->get('style'),
    '#access' => FALSE,
  );
  if (module_exists('image')) {
    $form['style']['#access'] = TRUE;
    $form['style']['#options'] = image_style_options();
  }
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Save',
  );
  $form['actions']['delete'] = array(
    '#type' => 'submit',
    '#value' => 'Delete',
  );
  return $form;
}