You are here

public function AnalyticsService::getPluginCollections in Analytics 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/AnalyticsService.php, line 133

Class

AnalyticsService
Defines the analytics instance entity.

Namespace

Drupal\analytics\Entity

Code

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