ResourcePluginManager.php

Same filename and directory in other branches
  1. 11.x core/modules/rest/src/Plugin/Type/ResourcePluginManager.php
  2. 10 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php
  3. 9 core/modules/rest/src/Plugin/Type/ResourcePluginManager.php
  4. 8.9.x 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;
use Symfony\Component\DependencyInjection\Attribute\Autowire;

/**
 * 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 {
  public function __construct(#[Autowire(service: 'container.namespaces')] \Traversable $namespaces, #[Autowire(service: 'cache.discovery')] 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.