public function ActivitySendManager::__construct in Open Social 8.5
Same name and namespace in other branches
- 8.9 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.2 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.3 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.4 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.6 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.7 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 8.8 modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 10.3.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 10.0.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 10.1.x modules/custom/activity_send/src/Plugin/ActivitySendManager.php \Drupal\activity_send\Plugin\ActivitySendManager::__construct()
- 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\PluginCode
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');
}