You are here

function crm_core_match_help in CRM Core 8

Same name and namespace in other branches
  1. 8.3 modules/crm_core_match/crm_core_match.module \crm_core_match_help()
  2. 8.2 modules/crm_core_match/crm_core_match.module \crm_core_match_help()

Implements hook_help().

File

modules/crm_core_match/crm_core_match.module, line 92
Manages matching engines for identifying duplicate contacts in CRM Core.

Code

function crm_core_match_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'entity.crm_core_match.collection':
      return '<p>' . t('Configure matching engines for contacts. Matching engines are used when new contacts are created, allowing CRM Core to identify potential duplicates and prevent additional records from being added to the system. Use this screen to activate / deactivate various matching engines and control the order in which they are applied.') . '</p>';
  }
}