You are here

protected function PatternSettingTypeBase::getPatternSettingDefinition in UI Patterns Settings 8.2

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

Return pattern setting definition.

Return value

\Drupal\ui_patterns_settings\Definition\PatternDefinitionSetting Pattern setting definition.

5 calls to PatternSettingTypeBase::getPatternSettingDefinition()
CheckboxesSettingType::settingsForm in src/Plugin/UiPatterns/SettingType/CheckboxesSettingType.php
Returns the configuration form elements specific to this settings plugin..
GroupType::settingsForm in src/Plugin/UiPatterns/SettingType/GroupType.php
Returns the configuration form elements specific to this settings plugin..
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…
PatternSettingTypeBase::preprocess in src/Plugin/PatternSettingTypeBase.php
Returns the processed setting variable.
TokenSettingTypeBase::settingsForm in src/Plugin/TokenSettingTypeBase.php
Returns the configuration form elements specific to this settings plugin..

File

src/Plugin/PatternSettingTypeBase.php, line 106

Class

PatternSettingTypeBase
Base class for UI Patterns Setting plugins.

Namespace

Drupal\ui_patterns_settings\Plugin

Code

protected function getPatternSettingDefinition() {
  return $this->patternSettingDefinition;
}