hook_event_dispatcher-8.x-2.04/modules/core_event_dispatcher/src/Event/Theme/PageAttachmentsEvent.php
modules/core_event_dispatcher/src/Event/Theme/PageAttachmentsEvent.php
<?php
namespace Drupal\core_event_dispatcher\Event\Theme;
use Drupal\Component\EventDispatcher\Event;
use Drupal\core_event_dispatcher\PageHookEvents;
use Drupal\hook_event_dispatcher\Attribute\HookEvent;
use Drupal\hook_event_dispatcher\Event\EventInterface;
/**
* Class PageAttachmentsEvent.
*/
#[HookEvent(id: 'page_attachments', hook: 'page_attachments')]
class PageAttachmentsEvent extends Event implements EventInterface {
/**
* The attachments array.
*
* @var array
*/
private array $attachments = [];
/**
* PageAttachmentsEvent constructor.
*
* @param array $attachments
* The attachments array.
*/
public function __construct(array &$attachments) {
$this->attachments = &$attachments;
}
/**
* Get the attachments array.
*
* @return array
* The attachments array.
*/
public function &getAttachments(): array {
return $this->attachments;
}
/**
* {@inheritdoc}
*/
public function getDispatcherType(): string {
return PageHookEvents::PAGE_ATTACHMENTS;
}
}
