You are here

public function PdfEngine::getPluginCollections in Entity Print 8

Gets the plugin collections used by this object.

Return value

\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.

Overrides ObjectWithPluginCollectionInterface::getPluginCollections

File

src/Entity/PdfEngine.php, line 76

Class

PdfEngine
Defines the Pdf Engine specific configuration.

Namespace

Drupal\entity_print\Entity

Code

public function getPluginCollections() {
  return [
    'settings' => $this
      ->getPdfEnginePluginCollection(),
  ];
}