You are here

class PatternSettingsLayout in UI Patterns Settings 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Layout/PatternSettingsLayout.php \Drupal\ui_patterns_settings\Plugin\Layout\PatternSettingsLayout

Layout class for patterns with settings.

@package Drupal\ui_patterns_settings\Plugin\Layout

Hierarchy

Expanded class hierarchy of PatternSettingsLayout

1 file declares its use of PatternSettingsLayout
ui_patterns_settings.module in ./ui_patterns_settings.module
Contains ui_patterns_settings.module.

File

src/Plugin/Layout/PatternSettingsLayout.php, line 12

Namespace

Drupal\ui_patterns_settings\Plugin\Layout
View source
class PatternSettingsLayout extends PatternLayout {

  /**
   * {@inheritdoc}
   */
  public function build(array $regions) {
    $build = parent::build($regions);
    $configuration = $this
      ->getConfiguration();
    if (isset($configuration['pattern']['settings'])) {
      $build['#settings'] = $configuration['pattern']['settings'];
    }
    if (isset($configuration['pattern']['variant_token'])) {
      $build['#variant_token'] = $configuration['pattern']['variant_token'];
    }
    return $build;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
LayoutDefault::$pluginDefinition protected property The layout definition. Overrides PluginBase::$pluginDefinition
LayoutDefault::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies 2
LayoutDefault::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
LayoutDefault::getPluginDefinition public function Overrides PluginBase::getPluginDefinition
LayoutDefault::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PatternLayout::$elementInfo protected property The element info.
PatternLayout::$moduleHandler protected property Module Handler.
PatternLayout::$patternManager protected property Pattern manager service.
PatternLayout::buildConfigurationForm public function Form constructor. Overrides LayoutDefault::buildConfigurationForm
PatternLayout::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
PatternLayout::defaultConfiguration public function Gets default configuration for this plugin. Overrides LayoutDefault::defaultConfiguration
PatternLayout::processOnlyContentFields protected function Remove default field template if "Only content" option has been selected.
PatternLayout::submitConfigurationForm public function Form submission handler. Overrides LayoutDefault::submitConfigurationForm
PatternLayout::validateConfigurationForm public function Form validation handler. Overrides LayoutDefault::validateConfigurationForm
PatternLayout::__construct public function Constructs a LocalActionDefault object. Overrides LayoutDefault::__construct
PatternSettingsLayout::build public function Build a render array for layout with regions. Overrides PatternLayout::build
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.