class AggregatorPluginManager

Manages aggregator plugins.

Hierarchy

Expanded class hierarchy of AggregatorPluginManager

1 file declares its use of AggregatorPluginManager
SettingsForm.php in drupal/core/modules/aggregator/lib/Drupal/aggregator/Form/SettingsForm.php
Contains \Drupal\aggregator\Form\SettingsForm.
1 string reference to 'AggregatorPluginManager'
aggregator.services.yml in drupal/core/modules/aggregator/aggregator.services.yml
drupal/core/modules/aggregator/aggregator.services.yml

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/AggregatorPluginManager.php, line 19
Contains \Drupal\aggregator\Plugin\AggregatorPluginManager.

Namespace

Drupal\aggregator\Plugin
View source
class AggregatorPluginManager extends PluginManagerBase {

  /**
   * Constructs a AggregatorPluginManager object.
   *
   * @param string $type
   *   The plugin type, for example fetcher.
   * @param \Traversable $namespaces
   *   An object that implements \Traversable which contains the root paths
   *   keyed by the corresponding namespace to look for plugin implementations,
   */
  public function __construct($type, \Traversable $namespaces) {
    $type_annotations = array(
      'fetcher' => 'Drupal\\aggregator\\Annotation\\AggregatorFetcher',
      'parser' => 'Drupal\\aggregator\\Annotation\\AggregatorParser',
      'processor' => 'Drupal\\aggregator\\Annotation\\AggregatorProcessor',
    );
    $annotation_namespaces = array(
      'Drupal\\aggregator\\Annotation' => DRUPAL_ROOT . '/core/modules/aggregator/lib',
    );
    $this->discovery = new AnnotatedClassDiscovery("aggregator/{$type}", $namespaces, $annotation_namespaces, $type_annotations[$type]);
    $this->discovery = new CacheDecorator($this->discovery, "aggregator_{$type}:" . language(Language::TYPE_INTERFACE)->langcode);
    $this->factory = new DefaultFactory($this->discovery);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AggregatorPluginManager::__construct public function Constructs a AggregatorPluginManager object.
PluginManagerBase::$defaults protected property A set of defaults to be referenced by $this->processDefinition() if additional processing of plugins is necessary or helpful for development purposes. 3
PluginManagerBase::$discovery protected property The object that discovers plugins managed by this manager.
PluginManagerBase::$factory protected property The object that instantiates plugins managed by this manager.
PluginManagerBase::$mapper protected property The object that returns the preconfigured plugin instance appropriate for a particular runtime condition.
PluginManagerBase::clearCachedDefinitions public function Clears static and persistent plugin definition caches. Overrides CachedDiscoveryInterface::clearCachedDefinitions
PluginManagerBase::createInstance public function Returns a preconfigured instance of a plugin. Overrides FactoryInterface::createInstance 6
PluginManagerBase::getDefinition public function Gets a specific plugin definition. Overrides DiscoveryInterface::getDefinition
PluginManagerBase::getDefinitions public function Gets the definition of all plugins for this type. Overrides DiscoveryInterface::getDefinitions
PluginManagerBase::getInstance public function Returns a preconfigured instance of a plugin. Overrides MapperInterface::getInstance 6
PluginManagerBase::processDefinition public function Performs extra processing on plugin definitions. 2