public function PrintEngineStorage::getPluginCollections in Entity Print 8.2
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/ PrintEngineStorage.php, line 76
Class
- PrintEngineStorage
- Defines the Print Engine specific configuration.
Namespace
Drupal\entity_print\EntityCode
public function getPluginCollections() {
return [
'settings' => $this
->getPrintEnginePluginCollection(),
];
}