You are here

class ParagraphEventVariables in Hook Event Dispatcher 8

Class ParagraphEventVariables.

Hierarchy

Expanded class hierarchy of ParagraphEventVariables

2 files declare their use of ParagraphEventVariables
EntityEventVariablesTest.php in tests/src/Unit/Preprocess/EntityEventVariablesTest.php
ParagraphPreprocessEventFactory.php in src/Event/Preprocess/Factory/ParagraphPreprocessEventFactory.php

File

src/Event/Preprocess/Variables/ParagraphEventVariables.php, line 8

Namespace

Drupal\hook_event_dispatcher\Event\Preprocess\Variables
View source
class ParagraphEventVariables extends AbstractEntityEventVariables {

  /**
   * Get the paragraph object.
   *
   * @return \Drupal\paragraphs\Entity\Paragraph
   *   Return the paragraph object.
   */
  public function getParagraph() {
    return $this->variables['paragraph'];
  }

  /**
   * Get the Entity.
   *
   * @return \Drupal\Core\Entity\EntityInterface
   *   EckEntity.
   */
  public function getEntity() {
    return $this
      ->getParagraph();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractEntityEventVariables::getEntityBundle public function Get the Entity bundle. 1
AbstractEntityEventVariables::getEntityType public function Get the Entity type. 1
AbstractEntityEventVariables::getViewMode public function Get the view mode. 1
AbstractEventVariables::$variables protected property Variables.
AbstractEventVariables::get public function Get a variable with a given name, return default if it does not exist. 1
AbstractEventVariables::getByReference public function Get a variable with a given name by reference. 1
AbstractEventVariables::remove public function Remove a given variable. 1
AbstractEventVariables::set public function Set a variable to a given value. 1
AbstractEventVariables::__construct public function Event Variables constructor.
ParagraphEventVariables::getEntity public function Get the Entity. Overrides AbstractEntityEventVariables::getEntity
ParagraphEventVariables::getParagraph public function Get the paragraph object.