You are here

public function Page::getPluginCollections in Page Manager 8.4

Same name and namespace in other branches
  1. 8 src/Entity/Page.php \Drupal\page_manager\Entity\Page::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/Page.php, line 188

Class

Page
Defines a Page entity class.

Namespace

Drupal\page_manager\Entity

Code

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