You are here

function party_ctools_plugin_type in Party 8.2

Implements hook_ctools_plugin_type().

Declare the plugin types we invent.

File

./party.module, line 1298
Provides a generic CRM party entity.

Code

function party_ctools_plugin_type() {

  // Party name label plugins provide ways to generate a party name label
  // from a party.
  $plugins['party_name_label'] = array();
  return $plugins;
}