You are here

CourseObjectAccessPluginManager.php in Course 8.2

File

src/Plugin/CourseObjectAccessPluginManager.php
View source
<?php

namespace Drupal\course\Plugin;

use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\course\Annotation\CourseObjectAccess;
use Traversable;

/**
 * Provides the Course object access plugin manager.
 */
class CourseObjectAccessPluginManager extends DefaultPluginManager {

  /**
   * Constructs a new CourseObjectAccessManager 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 CacheBackendInterface $cache_backend
   *   Cache backend instance to use.
   * @param 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/course', $namespaces, $module_handler, CourseObjectAccessInterface::class, CourseObjectAccess::class);
    $this
      ->alterInfo('course_object_access_info');
    $this
      ->setCacheBackend($cache_backend, 'course_object_access_plugins');
  }

}

Classes

Namesort descending Description
CourseObjectAccessPluginManager Provides the Course object access plugin manager.