You are here

function crm_core_contact_theme in CRM Core 7

Same name and namespace in other branches
  1. 8.3 modules/crm_core_contact/crm_core_contact.module \crm_core_contact_theme()
  2. 8 modules/crm_core_contact/crm_core_contact.module \crm_core_contact_theme()
  3. 8.2 modules/crm_core_contact/crm_core_contact.module \crm_core_contact_theme()

Implements hook_theme().

File

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

Code

function crm_core_contact_theme($existing, $type, $theme, $path) {
  return array(
    'crm_core_contact_merge_table' => array(
      'render element' => 'table',
      'file' => 'theme/crm_core_contact.theme.inc',
    ),
  );
}