You are here

public function PdfDownload::__construct in Entity Print 8

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides PluginBase::__construct

File

src/Plugin/Action/PdfDownload.php, line 70

Class

PdfDownload
Downloads the PDF for an entity.

Namespace

Drupal\entity_print\Plugin\Action

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, AccessManagerInterface $access_manager, PdfBuilderInterface $pdf_builder, PluginManagerInterface $plugin_manager, ImmutableConfig $entity_print_config) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->accessManager = $access_manager;
  $this->pdfBuilder = $pdf_builder;
  $this->pluginManager = $plugin_manager;
  $this->entityPrintConfig = $entity_print_config;
}