public function Wizard::getPluginCollections in Flexiform 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
- contrib/
wizard/ src/ Entity/ Wizard.php, line 187
Class
- Wizard
- Defines a flexiform wizard entity class.
Namespace
Drupal\flexiform_wizard\EntityCode
public function getPluginCollections() {
return [
'access_conditions' => $this
->getAccessConditions(),
];
}