You are here

public function ActivityType::getPluginCollections in CRM Core 8.3

Same name and namespace in other branches
  1. 8 modules/crm_core_activity/src/Entity/ActivityType.php \Drupal\crm_core_activity\Entity\ActivityType::getPluginCollections()
  2. 8.2 modules/crm_core_activity/src/Entity/ActivityType.php \Drupal\crm_core_activity\Entity\ActivityType::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

modules/crm_core_activity/src/Entity/ActivityType.php, line 167

Class

ActivityType
CRM Activity Type Entity Class.

Namespace

Drupal\crm_core_activity\Entity

Code

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