You are here

class PatternLayoutBuilder in UI Patterns Layout Builder 8

Same name in this branch
  1. 8 src/Element/PatternLayoutBuilder.php \Drupal\ui_patterns_layout_builder\Element\PatternLayoutBuilder
  2. 8 src/Plugin/Layout/PatternLayoutBuilder.php \Drupal\ui_patterns_layout_builder\Plugin\Layout\PatternLayoutBuilder

Class PatternLayoutBuilder.

@package Drupal\ui_patterns_layout_builder\Plugin\Layout

Hierarchy

Expanded class hierarchy of PatternLayoutBuilder

File

src/Plugin/Layout/PatternLayoutBuilder.php, line 14

Namespace

Drupal\ui_patterns_layout_builder\Plugin\Layout
View source
class PatternLayoutBuilder extends PatternLayout implements PluginFormInterface, ContainerFactoryPluginInterface {

  /**
   * Returns the region names.
   *
   * @return string[]
   *   The region names.
   */
  public function getRegionNames() {
    return $this->pluginDefinition
      ->getRegionNames();
  }

  /**
   * Returns the region.
   *
   * @return array[]
   *   The regions.
   */
  public function getRegions() {
    return $this->pluginDefinition
      ->getRegions();
  }

  /**
   * {@inheritdoc}
   */
  public function build(array $regions) {
    $build = parent::build($regions);
    $build['#layout'] = $this;
    $build = $build + $build['#fields'];
    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
PatternLayoutBuilder::build public function Build a render array for layout with regions. Overrides PatternLayout::build
PatternLayoutBuilder::getRegionNames public function Returns the region names.
PatternLayoutBuilder::getRegions public function Returns the region.
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.