Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SectionComponent.php

function SectionComponent::get

Gets any arbitrary property for the component.

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/SectionComponent.php, line 105

Class

SectionComponent
Provides a value object for a section component.

Namespace

Drupal\layout_builder

Code

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