You are here

public function YamlForm::getPluginCollections in YAML Form 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/YamlForm.php, line 1355

Class

YamlForm
Defines the form entity.

Namespace

Drupal\yamlform\Entity

Code

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