You are here

ActivityActionManager.php in Open Social 10.2.x

File

modules/custom/activity_creator/src/Plugin/ActivityActionManager.php
View 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 action plugin manager.
 */
class ActivityActionManager extends DefaultPluginManager {

  /**
   * Constructor for ActivityActionManager 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/ActivityAction', $namespaces, $module_handler, 'Drupal\\activity_creator\\Plugin\\ActivityActionInterface', 'Drupal\\activity_creator\\Annotation\\ActivityAction');
    $this
      ->alterInfo('activity_creator_activity_action_info');
    $this
      ->setCacheBackend($cache_backend, 'activity_creator_activity_action_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

Namesort descending Description
ActivityActionManager Provides the Activity action plugin manager.