You are here

class ResourcePluginManager in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php \Drupal\rest\Plugin\Type\ResourcePluginManager
  2. 9 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php \Drupal\rest\Plugin\Type\ResourcePluginManager

Manages discovery and instantiation of resource plugins.

Hierarchy

Expanded class hierarchy of ResourcePluginManager

See also

\Drupal\rest\Annotation\RestResource

\Drupal\rest\Plugin\ResourceBase

\Drupal\rest\Plugin\ResourceInterface

Plugin API

2 files declare their use of ResourcePluginManager
ResourceRoutes.php in core/modules/rest/src/Routing/ResourceRoutes.php
RestPermissions.php in core/modules/rest/src/RestPermissions.php
1 string reference to 'ResourcePluginManager'
rest.services.yml in core/modules/rest/rest.services.yml
core/modules/rest/rest.services.yml
1 service uses ResourcePluginManager
plugin.manager.rest in core/modules/rest/rest.services.yml
Drupal\rest\Plugin\Type\ResourcePluginManager

File

core/modules/rest/src/Plugin/Type/ResourcePluginManager.php, line 17

Namespace

Drupal\rest\Plugin\Type
View source
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, 'Drupal\\rest\\Plugin\\ResourceInterface', 'Drupal\\rest\\Annotation\\RestResource');
    $this
      ->setCacheBackend($cache_backend, 'rest_plugins');
    $this
      ->alterInfo('rest_resource');
  }

}

Members