ResourcePluginManager.php

Definition of Drupal\rest\Plugin\Type\ResourcePluginManager.

Namespace

Drupal\rest\Plugin\Type

File

drupal/core/modules/rest/lib/Drupal/rest/Plugin/Type/ResourcePluginManager.php
View source
<?php

/**
 * @file
 * Definition of Drupal\rest\Plugin\Type\ResourcePluginManager.
 */
namespace Drupal\rest\Plugin\Type;

use Drupal\Component\Plugin\PluginManagerBase;
use Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery;
use Drupal\Component\Plugin\Factory\ReflectionFactory;

/**
 * Manages discovery and instantiation of resource plugins.
 */
class ResourcePluginManager extends PluginManagerBase {

  /**
   * Overrides Drupal\Component\Plugin\PluginManagerBase::__construct().
   */
  public function __construct() {

    // Create resource plugin derivatives from declaratively defined resources.
    $this->discovery = new DerivativeDiscoveryDecorator(new AnnotatedClassDiscovery('rest', 'resource'));
    $this->factory = new ReflectionFactory($this);
  }

  /**
   * Overrides Drupal\Component\Plugin\PluginManagerBase::getInstance().
   */
  public function getInstance(array $options) {
    if (isset($options['id'])) {
      return $this
        ->createInstance($options['id']);
    }
  }

}

Classes

Namesort descending Description
ResourcePluginManager Manages discovery and instantiation of resource plugins.