ResourcePluginManager.php

Same filename and directory in other branches
  1. 9 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php
  2. 8.9.x core/modules/rest/src/Plugin/Type/ResourcePluginManager.php
  3. 10 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php

Namespace

Drupal\rest\Plugin\Type

File

core/modules/rest/src/Plugin/Type/ResourcePluginManager.php

View source
<?php

namespace Drupal\rest\Plugin\Type;

use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\rest\Attribute\RestResource;
use Drupal\rest\Plugin\ResourceInterface;

/**
 * Manages discovery and instantiation of resource plugins.
 *
 * @see \Drupal\rest\Annotation\RestResource
 * @see \Drupal\rest\Plugin\ResourceBase
 * @see \Drupal\rest\Plugin\ResourceInterface
 * @see plugin_api
 */
class ResourcePluginManager extends DefaultPluginManager {
    
    /**
     * Constructs a new \Drupal\rest\Plugin\Type\ResourcePluginManager 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 to invoke the alter hook with.
     */
    public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
        parent::__construct('Plugin/rest/resource', $namespaces, $module_handler, ResourceInterface::class, RestResource::class, 'Drupal\\rest\\Annotation\\RestResource');
        $this->setCacheBackend($cache_backend, 'rest_plugins');
        $this->alterInfo('rest_resource');
    }

}

Classes

Title Deprecated Summary
ResourcePluginManager Manages discovery and instantiation of resource plugins.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.