You are here

public function PatternSettingTypeInterface::buildConfigurationForm in UI Patterns Settings 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/PatternSettingTypeInterface.php \Drupal\ui_patterns_settings\Plugin\PatternSettingTypeInterface::buildConfigurationForm()

Returns the settings configuration form.

Parameters

array $form: The form definition array for the settings configuration form.

string $value: The stored default value.

string $token_value: The stored token value.

string $form_type: The form type. Either layout or layouts_display or display.

1 method overrides PatternSettingTypeInterface::buildConfigurationForm()
PatternSettingTypeBase::buildConfigurationForm in src/Plugin/PatternSettingTypeBase.php
Creates a generic configuration form for all settings types. Individual settings plugins can add elements to this form by overriding PatternSettingTypeBaseInterface::settingsForm(). Most plugins should not override this method unless they need to…

File

src/Plugin/PatternSettingTypeInterface.php, line 85

Class

PatternSettingTypeInterface
Defines an interface for UI Patterns setting type plugins.

Namespace

Drupal\ui_patterns_settings\Plugin

Code

public function buildConfigurationForm(array $form, $value, $token_value, $form_type);