You are here

public function N1EDEcosystemCKEditorPlugin::settingsForm in N1ED - Visual editor as CKEditor plugin with Bootstrap support 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/N1EDEcosystemCKEditorPlugin.php, line 216

Class

N1EDEcosystemCKEditorPlugin
Defines plugin.

Namespace

Drupal\n1ed\Plugin

Code

public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
  $config = $this
    ->getConfig($editor);
  $form['info'] = [
    '#type' => 'html_tag',
    '#tag' => 'div',
    '#attributes' => [
      'data-n1ed-eco-plugin' => $this
        ->getPluginName(),
      'data-plugin-installed' => $this
        ->isInstalled() ? "true" : "false",
      'style' => 'display: inline-block;margin-top: 13px;margin-left: 10px;',
    ],
    '#value' => '<a href="#n1ed-conf">Configure ' . $this
      ->getPluginName() . ' add-on</a>',
  ];
  $form['#attached']['library'][] = $this
    ->getModuleName() . '/' . $this
    ->getModuleName();
  $this
    ->addControlsToForm($form, $editor, $config);
  return $form;
}