You are here

function crm_core_default_matching_engine_theme in CRM Core 7

Implements hook_theme().

File

modules/crm_core_default_matching_engine/crm_core_default_matching_engine.module, line 62
The default matching engine for CRM Core. Identifies duplicate contacts in the system using criteria defined by users through the configuration tools.

Code

function crm_core_default_matching_engine_theme() {
  return array(
    'crm_core_default_matching_engine_form' => array(
      'render element' => 'form',
      'file' => 'crm_core_default_matching_engine.admin.inc',
    ),
  );
}