You are here

function _civicrm_entity_chained_fks in CiviCRM Entity 7

Same name and namespace in other branches
  1. 7.2 civicrm_entity.module \_civicrm_entity_chained_fks()

Please document this function.

2 calls to _civicrm_entity_chained_fks()
civicrm_entity_rules_data_info in ./civicrm_entity.rules.inc
Implements of hook_rules_data_type_info().
_civicrm_entity_getproperties in ./civicrm_entity.module
Calculate fields for entities

File

./civicrm_entity.module, line 320
Implement CiviCRM entities as a Drupal Entity.

Code

function _civicrm_entity_chained_fks() {
  return array(
    'CRM_Contact_DAO_Contact' => 'contact',
    'CRM_Event_DAO_Event' => 'event',
  );
}