You are here

public function SettingsForm::buildForm in Drupal 9

Same name in this branch
  1. 9 core/modules/media_library/src/Form/SettingsForm.php \Drupal\media_library\Form\SettingsForm::buildForm()
  2. 9 core/modules/aggregator/src/Form/SettingsForm.php \Drupal\aggregator\Form\SettingsForm::buildForm()
Same name and namespace in other branches
  1. 8 core/modules/media_library/src/Form/SettingsForm.php \Drupal\media_library\Form\SettingsForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfigFormBase::buildForm

File

core/modules/media_library/src/Form/SettingsForm.php, line 33

Class

SettingsForm
Defines a form for configuring the Media Library module.

Namespace

Drupal\media_library\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['advanced_ui'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Enable advanced UI'),
    '#default_value' => $this
      ->config('media_library.settings')
      ->get('advanced_ui'),
    '#description' => $this
      ->t('If checked, users creating new media items in the media library will see a summary of their selected media items, and they will be able to insert their selection directly into the media field or text editor.'),
  ];
  return parent::buildForm($form, $form_state);
}