You are here

function crm_core_contact_ui_theme in CRM Core 7

Implements hook_theme().

File

modules/crm_core_contact_ui/crm_core_contact_ui.module, line 127
Provides a user interface for CRM Core Contact.

Code

function crm_core_contact_ui_theme() {
  $theme = array(
    'crm_core_contact_ui_type_overview' => array(
      'variables' => array(
        'contact_type' => NULL,
      ),
      'file' => 'theme/crm_core_contact_ui_type.theme.inc',
    ),
    'crm_core_contact_ui_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'theme/crm_core_contact_ui.theme.inc',
    ),
    'crm_core_contact_ui_revsions' => array(
      'variables' => array(
        'contact_revisions' => array(),
      ),
      'file' => 'theme/crm_core_contact_ui.theme.inc',
    ),
  );
  return $theme;
}