public function NotificationPluginManager::__construct in Search API Saved Searches 8
Constructs a NotificationPluginManager object.
Parameters
\Traversable $namespaces: An object that implements \Traversable which contains the root paths keyed by the corresponding namespace to look for plugin implementations.
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
Overrides DefaultPluginManager::__construct
File
- src/
Notification/ NotificationPluginManager.php, line 33
Class
- NotificationPluginManager
- Manages notification plugins.
Namespace
Drupal\search_api_saved_searches\NotificationCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/search_api_saved_searches/notification', $namespaces, $module_handler, 'Drupal\\search_api_saved_searches\\Notification\\NotificationPluginInterface', 'Drupal\\search_api_saved_searches\\Annotation\\SearchApiSavedSearchesNotification');
$this
->setCacheBackend($cache_backend, 'search_api_saved_searches_notification');
$this
->alterInfo('search_api_saved_searches_notification_info');
}