You are here

public function DefaultMatchingEngine::__construct in CRM Core 7

Constructor: sets basic variables.

Overrides CrmCoreMatchEngine::__construct

File

modules/crm_core_default_matching_engine/includes/DefaultMatchingEngine.inc, line 273

Class

DefaultMatchingEngine
DefaultMatchingEngine class

Code

public function __construct() {
  $this->name = t('Default Matching Engine');
  $this->machineName = 'default_matching_engine';
  $description = 'This is a simple matching engine from CRM Core. Allows administrators to specify matching' . ' rules for individual contact types on a field-by-field basis.';
  $this->description = t($description);
  $this->settings = array(
    array(
      'name' => 'settings',
      'path' => 'admin/config/crm-core/match/default_match',
      'label' => t('Configuration'),
    ),
  );
}