You are here

public function ImageEffectsPluginBase::selectionElement in Image Effects 8

Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageEffectsPluginBase.php \Drupal\image_effects\Plugin\ImageEffectsPluginBase::selectionElement()
  2. 8.2 src/Plugin/ImageEffectsPluginBase.php \Drupal\image_effects\Plugin\ImageEffectsPluginBase::selectionElement()

Return a form element to select the plugin content.

Parameters

array $options: (Optional) An array of additional Form API keys and values.

Return value

array Render array of the form element.

Overrides ImageEffectsPluginBaseInterface::selectionElement

6 methods override ImageEffectsPluginBase::selectionElement()
Basic::selectionElement in src/Plugin/image_effects/FontSelector/Basic.php
Return a form element to select the plugin content.
Basic::selectionElement in src/Plugin/image_effects/ImageSelector/Basic.php
Return a form element to select the plugin content.
Dropdown::selectionElement in src/Plugin/image_effects/ImageSelector/Dropdown.php
Return a form element to select the plugin content.
Farbtastic::selectionElement in src/Plugin/image_effects/ColorSelector/Farbtastic.php
Return a form element to select the plugin content.
HtmlColor::selectionElement in src/Plugin/image_effects/ColorSelector/HtmlColor.php
Return a form element to select the plugin content.

... See full list

File

src/Plugin/ImageEffectsPluginBase.php, line 137

Class

ImageEffectsPluginBase
Base image_effects plugin.

Namespace

Drupal\image_effects\Plugin

Code

public function selectionElement(array $options = []) {
  return [];
}