You are here

class NodeEventVariables in Hook Event Dispatcher 3.x

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

Class NodeEventVariables.

Hierarchy

Expanded class hierarchy of NodeEventVariables

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

File

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

Namespace

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

  /**
   * Get the node.
   *
   * @return \Drupal\node\NodeInterface
   *   The node.
   */
  public function getNode() : NodeInterface {
    return $this->variables['node'];
  }

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

}

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.
NodeEventVariables::getEntity public function Get the Entity. Overrides AbstractEntityEventVariables::getEntity
NodeEventVariables::getNode public function Get the node.