ViewsDataEvent.php in Hook Event Dispatcher 8
Namespace
Drupal\hook_event_dispatcher\Event\ViewsFile
src/Event/Views/ViewsDataEvent.phpView source
<?php
namespace Drupal\hook_event_dispatcher\Event\Views;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* Class ViewsDataEvent.
*/
final class ViewsDataEvent extends Event implements EventInterface {
/**
* New views data.
*
* @var array
*/
private $data = [];
/**
* Add data to the views data.
*
* @param array $data
* Data to add to the views data.
*
* @see \hook_views_data()
*/
public function addData(array $data) {
$this->data = \array_merge_recursive($this->data, $data);
}
/**
* Get data.
*
* @return array
* Data.
*/
public function getData() {
return $this->data;
}
/**
* Get the dispatcher type.
*
* @return string
* The dispatcher type.
*/
public function getDispatcherType() {
return HookEventDispatcherInterface::VIEWS_DATA;
}
}
Classes
Name | Description |
---|---|
ViewsDataEvent | Class ViewsDataEvent. |