You are here

public function AutoEmbed::settingsForm in CKEditor Media Embed Plugin 8

Returns a settings form to configure this CKEditor plugin.

If the plugin's behavior depends on extensive options and/or external data, then the implementing module can choose to provide a separate, global configuration page rather than per-text-editor settings. In that case, this form should provide a link to the separate settings page.

Parameters

array $form: An empty form array to be populated with a configuration form, if any.

\Drupal\Core\Form\FormStateInterface $form_state: The state of the entire filter administration form.

\Drupal\editor\Entity\Editor $editor: A configured text editor object.

Return value

array A render array for the settings form.

Overrides CKEditorPluginConfigurableInterface::settingsForm

File

src/Plugin/CKEditorPlugin/AutoEmbed.php, line 98

Class

AutoEmbed
Defines the "Auto Embed" plugin.

Namespace

Drupal\ckeditor_media_embed\Plugin\CKEditorPlugin

Code

public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
  $settings = $editor
    ->getSettings();
  $form['status'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Enable auto embed'),
    '#options' => [
      '' => $this
        ->t('Disabled'),
      'embed' => $this
        ->t('Media Embed'),
      'embedsemantic' => $this
        ->t('Semantic Media Embed'),
    ],
    '#default_value' => !empty($settings['plugins']['autoembed']['status']) ? $settings['plugins']['autoembed']['status'] : '',
    '#description' => $this
      ->t('When enabled to a Media embed plugin, media resource URLs pasted into the editing area are turned into an embed resource using the selected plugin.'),
  ];
  return $form;
}