You are here

public function SectionStorageDefinition::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/SectionStorage/SectionStorageDefinition.php \Drupal\layout_builder\SectionStorage\SectionStorageDefinition::__construct()

LayoutDefinition constructor.

Parameters

array $definition: An array of values from the annotation.

File

core/modules/layout_builder/src/SectionStorage/SectionStorageDefinition.php, line 36

Class

SectionStorageDefinition
Provides section storage type plugin definition.

Namespace

Drupal\layout_builder\SectionStorage

Code

public function __construct(array $definition = []) {

  // If there are context definitions in the plugin definition, they should
  // be added to this object using ::addContextDefinition() so that they can
  // be manipulated using other ContextAwarePluginDefinitionInterface methods.
  if (isset($definition['context_definitions'])) {
    foreach ($definition['context_definitions'] as $name => $context_definition) {
      $this
        ->addContextDefinition($name, $context_definition);
    }
    unset($definition['context_definitions']);
  }
  foreach ($definition as $property => $value) {
    $this
      ->set($property, $value);
  }
}