You are here

public function FrontendEnvironment::getPluginCollections in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x src/Entity/FrontendEnvironment.php \Drupal\build_hooks\Entity\FrontendEnvironment::getPluginCollections()

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/FrontendEnvironment.php, line 162

Class

FrontendEnvironment
Defines the Frontend environment entity.

Namespace

Drupal\build_hooks\Entity

Code

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