You are here

FeedsSingleLazyPluginCollection.php in Feeds 8.3

Namespace

Drupal\feeds\Feeds

File

src/Feeds/FeedsSingleLazyPluginCollection.php
View source
<?php

namespace Drupal\feeds\Feeds;

use Drupal\Core\Plugin\DefaultSingleLazyPluginCollection;
use Drupal\Component\Plugin\PluginManagerInterface;
use Drupal\feeds\FeedTypeInterface;

/**
 * Provides a container for lazily loading Feeds plugins.
 */
class FeedsSingleLazyPluginCollection extends DefaultSingleLazyPluginCollection {

  /**
   * The feed type.
   *
   * @var \Drupal\feeds\FeedTypeInterface
   */
  protected $feedType;

  /**
   * Constructs a FeedsSingleLazyPluginCollection.
   *
   * @param \Drupal\Component\Plugin\PluginManagerInterface $manager
   *   The manager to be used for instantiating plugins.
   * @param string $instance_id
   *   The ID of the plugin instance.
   * @param array $configuration
   *   An array of configuration.
   * @param \Drupal\feeds\FeedTypeInterface $feed_type
   *   The feed feed type this plugin belongs to.
   */
  public function __construct(PluginManagerInterface $manager, $instance_id, array $configuration, FeedTypeInterface $feed_type) {

    // Sneak the feed type in via configuration.
    // @todo Remove this once plugins don't need the type.
    $this->feedType = $feed_type;
    $configuration['feed_type'] = $feed_type;
    parent::__construct($manager, $instance_id, $configuration);
  }

  /**
   * {@inheritdoc}
   */
  public function setConfiguration($configuration) {
    $configuration['feed_type'] = $this->feedType;
    return parent::setConfiguration($configuration);
  }

}

Classes

Namesort descending Description
FeedsSingleLazyPluginCollection Provides a container for lazily loading Feeds plugins.