You are here

function crm_core_user_sync_get_contact_from_uid in CRM Core 8.2

Same name and namespace in other branches
  1. 7 modules/crm_core_user_sync/crm_core_user_sync.module \crm_core_user_sync_get_contact_from_uid()

Retrieves the related contacts for given uid(s).

4 calls to crm_core_user_sync_get_contact_from_uid()
crm_core_user_sync_edit_relation_form_validate in modules/crm_core_user_sync/crm_core_user_sync.admin.inc
Validate callback on edit form.
crm_core_user_sync_init in modules/crm_core_user_sync/crm_core_user_sync.module
Implements hook_init().
crm_core_user_sync_sync in modules/crm_core_user_sync/crm_core_user_sync.module
Synchronizes user amd contact.
crm_core_user_sync_user_view in modules/crm_core_user_sync/crm_core_user_sync.module
Implements hook_user_view().

File

modules/crm_core_user_sync/crm_core_user_sync.module, line 404

Code

function crm_core_user_sync_get_contact_from_uid($uid) {
  return crm_core_user_sync_get_related_entity('user', $uid, 'crm_core_user_sync');
}