You are here

MentionsPluginManager.php in Open Social 8.4

Namespace

Drupal\mentions

File

modules/custom/mentions/src/MentionsPluginManager.php
View source
<?php

namespace Drupal\mentions;

use Drupal\Core\Plugin\DefaultPluginManager;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;

/**
 * MentionsPluginManager for Mentions Type.
 */
class MentionsPluginManager extends DefaultPluginManager {

  /**
   * {@inheritdoc}
   */
  public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
    parent::__construct('Plugin/Mentions', $namespaces, $module_handler, 'Drupal\\mentions\\MentionsPluginInterface', 'Drupal\\mentions\\Annotation\\Mention');
    $this
      ->alterInfo('mentions_plugin_info');
    $this
      ->setCacheBackend($cache_backend, 'mentions_plugins');
  }

  /**
   * Get the names of plugins of type mentions_type.
   *
   * @return array
   *   A list of plugin names.
   */
  public function getPluginNames() {
    $definitions = $this
      ->getDefinitions();
    $plugin_names = [];
    foreach ($definitions as $definition) {
      $name = $definition['name']
        ->getUntranslatedString();
      $plugin_names[$definition['id']] = $name;
    }
    return $plugin_names;
  }

}

Classes

Namesort descending Description
MentionsPluginManager MentionsPluginManager for Mentions Type.