You are here

public function AvatarKitService::getPluginCollections in Avatar Kit 8.2

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/AvatarKitService.php, line 130

Class

AvatarKitService
Defines storage for an avatar service instance.

Namespace

Drupal\avatars\Entity

Code

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