You are here

EmbedTypeManager.php in Embed 8

File

src/EmbedType/EmbedTypeManager.php
View source
<?php

namespace Drupal\embed\EmbedType;

use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\embed\Annotation\EmbedType;

/**
 * Provides an Embed type plugin manager.
 *
 * @see \Drupal\embed\Annotation\EmbedType
 * @see \Drupal\embed\EmbedType\EmbedTypeInterface
 * @see hook_embed_type_plugins_alter()
 */
class EmbedTypeManager extends DefaultPluginManager {

  /**
   * Constructs a EmbedTypeManager 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/EmbedType', $namespaces, $module_handler, EmbedTypeInterface::class, EmbedType::class);
    $this
      ->alterInfo('embed_type_plugins');
    $this
      ->setCacheBackend($cache_backend, 'embed_type_plugins');
  }

  /**
   * Provides a list of plugins suitable for form options.
   *
   * @return array
   *   An array of valid plugin labels, keyed by plugin ID.
   */
  public function getDefinitionOptions() {
    $options = array_map(function ($definition) {
      return (string) $definition['label'];
    }, $this
      ->getDefinitions());
    natsort($options);
    return $options;
  }

}

Classes

Namesort descending Description
EmbedTypeManager Provides an Embed type plugin manager.