You are here

public function GutenbergPluginConfigurableInterface::settingsForm in Gutenberg 8

Same name and namespace in other branches
  1. 8.2 src/GutenbergPluginConfigurableInterface.php \Drupal\gutenberg\GutenbergPluginConfigurableInterface::settingsForm()

Returns a settings form to configure this Gutenberg 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.

1 method overrides GutenbergPluginConfigurableInterface::settingsForm()
DrupalImage::settingsForm in src/Plugin/GutenbergPlugin/DrupalImage.php

File

src/GutenbergPluginConfigurableInterface.php, line 35

Class

GutenbergPluginConfigurableInterface
Defines an interface for configurable Gutenberg plugins.

Namespace

Drupal\gutenberg

Code

public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor);