public function EncryptionProfile::getPluginCollections in Encrypt 8.3
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/ EncryptionProfile.php, line 111
Class
- EncryptionProfile
- Defines the EncryptionProfile entity.
Namespace
Drupal\encrypt\EntityCode
public function getPluginCollections() {
return [
'encryption_method_configuration' => $this
->getPluginCollection(),
];
}