You are here

public function ActivitySendManager::__construct in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  2. 8 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  3. 8.2 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  4. 8.3 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  5. 8.4 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  6. 8.5 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  7. 8.7 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  8. 8.8 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  9. 10.3.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  10. 10.0.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  11. 10.1.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
  12. 10.2.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()

Constructor for ActivitySendManager objects.

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 to invoke the alter hook with.

Overrides DefaultPluginManager::__construct

File

modules/custom/activity_send/src/Plugin/ActivitySendManager.php, line 26

Class

ActivitySendManager
Provides the Activity send plugin manager.

Namespace

Drupal\activity_send\Plugin

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/ActivitySend', $namespaces, $module_handler, 'Drupal\\activity_send\\Plugin\\ActivitySendInterface', 'Drupal\\activity_send\\Annotation\\ActivitySend');
  $this
    ->alterInfo('activity_send_info');
  $this
    ->setCacheBackend($cache_backend, 'activity_send_plugins');
}