You are here

PdfGeneratorPluginManager.php in PDF generator API 2.x

Same filename and directory in other branches
  1. 8 src/PdfGeneratorPluginManager.php

Contains \Drupal\pdf_generator\PdfGeneratorPluginManager.

Namespace

Drupal\pdf_api

File

src/PdfGeneratorPluginManager.php
View source
<?php

/**
 * @file
 * Contains \Drupal\pdf_generator\PdfGeneratorPluginManager.
 */
namespace Drupal\pdf_api;

use Drupal\Core\Config\ConfigFactory;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;

/**
 * Manages PDF generator plugins.
 */
class PdfGeneratorPluginManager extends DefaultPluginManager {

  /**
   * The config factory service.
   *
   * @var \Drupal\Core\Config\ConfigFactory
   */
  protected $config;

  /**
   * Constructs a PrintableFormatPluginManager 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\Config\ConfigFactory $config
   *   The config factory service.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler to invoke the alter hook with.
   */
  public function __construct(\Traversable $namespaces, ConfigFactory $config, ModuleHandlerInterface $module_handler) {
    $this->config = $config;
    parent::__construct('Plugin/PdfGenerator', $namespaces, $module_handler, 'Drupal\\pdf_api\\Plugin\\PdfGeneratorInterface', 'Drupal\\pdf_api\\Annotation\\PdfGenerator');
  }

  /**
   * {@inheritdoc}
   */
  public function createInstance($plugin_id, array $configuration = array()) {
    $configuration += (array) $this->config
      ->get('printable.format')
      ->get($plugin_id);
    return parent::createInstance($plugin_id, $configuration);
  }

}

Classes

Namesort descending Description
PdfGeneratorPluginManager Manages PDF generator plugins.