crocheteer-8.x-1.0/src/Plugin/Hook/Entity/HookEntityPredeletePluginManager.php
src/Plugin/Hook/Entity/HookEntityPredeletePluginManager.php
<?php
namespace Drupal\crocheteer\Plugin\Hook\Entity;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drupal\crocheteer\Annotation\HookEntityPredelete;
use Drupal\crocheteer\Plugin\Hook\HookPluginInterface;
use Traversable;
/**
* Plugin Manager for all Hook Entity Predelete Plugins.
*
* @property-read \Drupal\hook_event_dispatcher\Event\Entity\EntityPredeleteEvent $event
*/
class HookEntityPredeletePluginManager extends HookEntityPluginManager {
/**
* {@inheritdoc}
*/
public function __construct(
Traversable $namespaces,
CacheBackendInterface $cacheBackend,
ModuleHandlerInterface $moduleHandler,
LoggerChannelFactoryInterface $loggerChannelFactory
) {
parent::__construct(
$namespaces,
$cacheBackend,
$moduleHandler,
$loggerChannelFactory,
HookPluginInterface::class,
HookEntityPredelete::class,
'crocheteer_entity_predelete'
);
}
}
