You are here

public function TagSet::getPluginCollections in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/Entity/TagSet.php \Drupal\xbbcode\Entity\TagSet::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/TagSet.php, line 83

Class

TagSet
Represents a set of configured tags.

Namespace

Drupal\xbbcode\Entity

Code

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