You are here

function crm_core_contact_feeds_plugins in CRM Core 7

Implements hook_feeds_plugins().

File

modules/crm_core_contact/crm_core_contact.module, line 945
Provides default CRM Core Contact entities and the ability to create more.

Code

function crm_core_contact_feeds_plugins() {
  $info['CRMFeedsContactProcessor'] = array(
    'name' => 'CRM Core Contact processor',
    'description' => 'Create and update CRM Core Contacts.',
    'help' => 'Create and update CRM Core Contacts from parsed content.',
    'handler' => array(
      'parent' => 'FeedsProcessor',
      'class' => 'CRMFeedsContactProcessor',
      'file' => 'CRMFeedsContactProcessor.inc',
      'path' => drupal_get_path('module', 'crm_core_contact') . '/includes',
    ),
  );
  return $info;
}