public function TagSet::getPluginCollections in Extensible BBCode 4.0.x
Same name and namespace in other branches
- 8.3 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 82
Class
- TagSet
- Represents a set of configured tags.
Namespace
Drupal\xbbcode\EntityCode
public function getPluginCollections() : array {
return [
'tags' => $this
->getPluginCollection(),
];
}