class ParagraphEventVariables in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 modules/preprocess_event_dispatcher/src/Variables/ParagraphEventVariables.php \Drupal\preprocess_event_dispatcher\Variables\ParagraphEventVariables
Class ParagraphEventVariables.
Hierarchy
- class \Drupal\preprocess_event_dispatcher\Variables\AbstractEventVariables
- class \Drupal\preprocess_event_dispatcher\Variables\AbstractEntityEventVariables
- class \Drupal\preprocess_event_dispatcher\Variables\ParagraphEventVariables
- class \Drupal\preprocess_event_dispatcher\Variables\AbstractEntityEventVariables
Expanded class hierarchy of ParagraphEventVariables
2 files declare their use of ParagraphEventVariables
- EntityEventVariablesTest.php in modules/
preprocess_event_dispatcher/ tests/ src/ Unit/ EntityEventVariablesTest.php - ParagraphPreprocessEventFactory.php in modules/
preprocess_event_dispatcher/ src/ Factory/ ParagraphPreprocessEventFactory.php
File
- modules/
preprocess_event_dispatcher/ src/ Variables/ ParagraphEventVariables.php, line 11
Namespace
Drupal\preprocess_event_dispatcher\VariablesView source
class ParagraphEventVariables extends AbstractEntityEventVariables {
/**
* Get the paragraph object.
*
* @return \Drupal\paragraphs\ParagraphInterface
* Return the paragraph object.
*/
public function getParagraph() : ParagraphInterface {
return $this->variables['paragraph'];
}
/**
* Get the Entity.
*
* @return \Drupal\Core\Entity\EntityInterface
* EckEntity.
*/
public function getEntity() : EntityInterface {
return $this
->getParagraph();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AbstractEntityEventVariables:: |
public | function | Get the Entity bundle. | 1 |
AbstractEntityEventVariables:: |
public | function | Get the Entity type. | 1 |
AbstractEntityEventVariables:: |
public | function | Get the view mode. | 1 |
AbstractEventVariables:: |
protected | property | Variables. | |
AbstractEventVariables:: |
public | function | Get a variable with a given name, return default if it does not exist. | 1 |
AbstractEventVariables:: |
public | function | Get a variable with a given name by reference. | 1 |
AbstractEventVariables:: |
public | function | Remove a given variable. | 1 |
AbstractEventVariables:: |
public | function | Set a variable to a given value. | 1 |
AbstractEventVariables:: |
public | function | Event Variables constructor. | |
ParagraphEventVariables:: |
public | function |
Get the Entity. Overrides AbstractEntityEventVariables:: |
|
ParagraphEventVariables:: |
public | function | Get the paragraph object. |