You are here

class EckEntityEventVariables in Hook Event Dispatcher 3.x

Same name and namespace in other branches
  1. 8.2 modules/preprocess_event_dispatcher/src/Variables/EckEntityEventVariables.php \Drupal\preprocess_event_dispatcher\Variables\EckEntityEventVariables

Class EckEntityEventVariables.

Hierarchy

Expanded class hierarchy of EckEntityEventVariables

2 files declare their use of EckEntityEventVariables
EckEntityPreprocessEventFactory.php in modules/preprocess_event_dispatcher/src/Factory/EckEntityPreprocessEventFactory.php
EntityEventVariablesTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/EntityEventVariablesTest.php

File

modules/preprocess_event_dispatcher/src/Variables/EckEntityEventVariables.php, line 11

Namespace

Drupal\preprocess_event_dispatcher\Variables
View source
class EckEntityEventVariables extends AbstractEntityEventVariables {

  /**
   * Get the EckEntity.
   *
   * @return \Drupal\eck\EckEntityInterface
   *   EckEntity.
   */
  public function getEckEntity() : EckEntityInterface {
    return $this->variables['eck_entity'];
  }

  /**
   * {@inheritdoc}
   */
  public function getEntity() : EntityInterface {
    return $this
      ->getEckEntity();
  }

  /**
   * {@inheritdoc}
   */
  public function getEntityBundle() : string {
    return $this->variables['bundle'];
  }

  /**
   * {@inheritdoc}
   */
  public function getViewMode() : string {
    return $this->variables['elements']['#view_mode'];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractEntityEventVariables::getEntityType public function Get the Entity type. 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.
EckEntityEventVariables::getEckEntity public function Get the EckEntity.
EckEntityEventVariables::getEntity public function Get the Entity. Overrides AbstractEntityEventVariables::getEntity
EckEntityEventVariables::getEntityBundle public function Get the Entity bundle. Overrides AbstractEntityEventVariables::getEntityBundle
EckEntityEventVariables::getViewMode public function Get the view mode. Overrides AbstractEntityEventVariables::getViewMode