You are here

DebugMessageFormatterPluginManager.php in Apigee Edge 8

File

modules/apigee_edge_debug/src/DebugMessageFormatterPluginManager.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge_debug;

use Drupal\apigee_edge_debug\Annotation\DebugMessageFormatter;
use Drupal\apigee_edge_debug\Plugin\DebugMessageFormatter\DebugMessageFormatterPluginInterface;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;

/**
 * Provides a debug message formatter plugin manager.
 */
class DebugMessageFormatterPluginManager extends DefaultPluginManager {

  /**
   * DebugMessageFormatterPluginManager constructor.
   *
   * @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
   *   The cache backend.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler.
   */
  public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
    parent::__construct('Plugin/DebugMessageFormatter', $namespaces, $module_handler, DebugMessageFormatterPluginInterface::class, DebugMessageFormatter::class);
    $this
      ->alterInfo('apigee_edge_debug_message_formatter_info');
    $this
      ->setCacheBackend($cache_backend, 'apigee_edge_debug_message_formatters');
  }

}

Classes

Namesort descending Description
DebugMessageFormatterPluginManager Provides a debug message formatter plugin manager.