search_api-8.x-1.15/src/Tracker/TrackerPluginManager.php
src/Tracker/TrackerPluginManager.php
<?php
namespace Drupal\search_api\Tracker;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\search_api\Event\SearchApiEvents;
use Drupal\search_api\SearchApiPluginManager;
use Drupal\search_api\Utility\Utility;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* Manages tracker plugins.
*
* @see \Drupal\search_api\Annotation\SearchApiTracker
* @see \Drupal\search_api\Tracker\TrackerPluginManager
* @see \Drupal\search_api\Tracker\TrackerInterface
* @see \Drupal\search_api\Tracker\TrackerPluginBase
* @see plugin_api
*/
class TrackerPluginManager extends SearchApiPluginManager {
/**
* Constructs a TrackerPluginManager object.
*
* @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.
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher
* The event dispatcher.
*/
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, EventDispatcherInterface $eventDispatcher) {
parent::__construct('Plugin/search_api/tracker', $namespaces, $module_handler, $eventDispatcher, 'Drupal\search_api\Tracker\TrackerInterface', 'Drupal\search_api\Annotation\SearchApiTracker');
$this->setCacheBackend($cache_backend, 'search_api_trackers');
$this->alterInfo('search_api_tracker_info');
$this->alterEvent(SearchApiEvents::GATHERING_TRACKERS);
}
/**
* 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] = Utility::escapeHtml($plugin_definition['label']);
}
return $options;
}
}
