public function Blocktabs::getPluginCollections in Block Tabs 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/ Blocktabs.php, line 155
Class
- Blocktabs
- Defines a blocktabs configuration entity.
Namespace
Drupal\blocktabs\EntityCode
public function getPluginCollections() {
return [
'tabs' => $this
->getTabs(),
];
}