You are here

public function SectionStorageDefinition::get in Drupal 10

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

Gets any arbitrary property.

Parameters

string $property: The property to retrieve.

Return value

mixed The value for that property, or NULL if the property does not exist.

File

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

Class

SectionStorageDefinition
Provides section storage type plugin definition.

Namespace

Drupal\layout_builder\SectionStorage

Code

public function get($property) {
  if (property_exists($this, $property)) {
    $value = $this->{$property} ?? NULL;
  }
  else {
    $value = $this->additional[$property] ?? NULL;
  }
  return $value;
}