You are here

function crm_core_match_theme in CRM Core 7

Implements hook_theme().

File

modules/crm_core_match/crm_core_match.module, line 108
Manages matching engines for identifying duplicate contacts in CRM Core. Allows CRM Core to install, enable and disable matching engines.

Code

function crm_core_match_theme() {
  return array(
    'crm_core_match_admin_config_engines_form' => array(
      'render element' => 'form',
      'file' => 'crm_core_match.admin.inc',
    ),
  );
}