You are here

public function SectionComponentBuildRenderArrayEvent::getComponent in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Event/SectionComponentBuildRenderArrayEvent.php \Drupal\layout_builder\Event\SectionComponentBuildRenderArrayEvent::getComponent()
  2. 10 core/modules/layout_builder/src/Event/SectionComponentBuildRenderArrayEvent.php \Drupal\layout_builder\Event\SectionComponentBuildRenderArrayEvent::getComponent()

Get the section component whose render array is being built.

Return value

\Drupal\layout_builder\SectionComponent The section component whose render array is being built.

File

core/modules/layout_builder/src/Event/SectionComponentBuildRenderArrayEvent.php, line 79

Class

SectionComponentBuildRenderArrayEvent
Event fired when a section component's render array is being built.

Namespace

Drupal\layout_builder\Event

Code

public function getComponent() {
  return $this->component;
}