class PreNodeUploadEvent in GatherContent 8.5
Wraps a pre node upload event for event listeners.
Hierarchy
- class \Drupal\gathercontent_upload\Event\PreNodeUploadEvent extends \Symfony\Component\EventDispatcher\Event
Expanded class hierarchy of PreNodeUploadEvent
1 file declares its use of PreNodeUploadEvent
- Exporter.php in gathercontent_upload/
src/ Export/ Exporter.php
File
- gathercontent_upload/
src/ Event/ PreNodeUploadEvent.php, line 11
Namespace
Drupal\gathercontent_upload\EventView source
class PreNodeUploadEvent extends Event {
/**
* Node object.
*
* @var \Drupal\node\NodeInterface
*/
protected $node;
/**
* Source fields.
*
* @var array
*/
protected $gathercontentValues;
/**
* Constructs a pre node upload event object.
*
* @param \Drupal\Core\Entity\EntityInterface $node
* Entity object.
* @param array $gathercontentValues
* Source fields representing object in GatherContent.
*/
public function __construct(EntityInterface $node, array $gathercontentValues) {
$this->node = $node;
$this->gathercontentValues = $gathercontentValues;
}
/**
* Gets the node object.
*
* @return \Drupal\node\NodeInterface
* The node object.
*/
public function getNode() {
return $this->node;
}
/**
* Gets the array of source fields.
*
* @return array
* Source fields.
*/
public function getGathercontentValues() {
return $this->gathercontentValues;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PreNodeUploadEvent:: |
protected | property | Source fields. | |
PreNodeUploadEvent:: |
protected | property | Node object. | |
PreNodeUploadEvent:: |
public | function | Gets the array of source fields. | |
PreNodeUploadEvent:: |
public | function | Gets the node object. | |
PreNodeUploadEvent:: |
public | function | Constructs a pre node upload event object. |