ActivityContextManager.php in Open Social 10.2.x
Same filename and directory in other branches
- 8.9 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.2 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.3 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.4 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.5 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.6 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.7 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 8.8 modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 10.3.x modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 10.0.x modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
- 10.1.x modules/custom/activity_creator/src/Plugin/ActivityContextManager.php
Namespace
Drupal\activity_creator\PluginFile
modules/custom/activity_creator/src/Plugin/ActivityContextManager.phpView source
<?php
namespace Drupal\activity_creator\Plugin;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Component\Utility\Html;
/**
* Provides the Activity context plugin manager.
*/
class ActivityContextManager extends DefaultPluginManager {
/**
* Constructor for ActivityContextManager objects.
*
* @param \Traversable $namespaces
* An object that implements \Traversable which contains the root paths
* keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler to invoke the alter hook with.
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/ActivityContext', $namespaces, $module_handler, 'Drupal\\activity_creator\\Plugin\\ActivityContextInterface', 'Drupal\\activity_creator\\Annotation\\ActivityContext');
$this
->alterInfo('activity_creator_activity_context_info');
$this
->setCacheBackend($cache_backend, 'activity_creator_activity_context_plugins');
}
/**
* Retrieves an options list of available trackers.
*
* @return string[]
* An associative array mapping the IDs of all available tracker plugins to
* their labels.
*/
public function getOptionsList() {
$options = [];
foreach ($this
->getDefinitions() as $plugin_id => $plugin_definition) {
$options[$plugin_id] = Html::escape($plugin_definition['label']);
}
return $options;
}
}
Classes
Name | Description |
---|---|
ActivityContextManager | Provides the Activity context plugin manager. |