You are here

function crm_core_match_permission in CRM Core 7

Implements hook_permission().

File

modules/crm_core_match/crm_core_match.module, line 195
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_permission() {
  return array(
    'administer matching engines' => array(
      'title' => t('Administer matching engines'),
    ),
    'view matching engine rules configuration' => array(
      'title' => t('View matching engine rules configuration'),
    ),
    'view match information' => array(
      'title' => t('View match information'),
    ),
  );
}