You are here

protected property CrmCoreMatchEngine::$settings in CRM Core 7

An array listing settings pages for the matching engine.

Example structure:

$settings = array(
  array(
    'name' => 'settings',
    // Machine readable settings page name.
    'path' => '<front>',
    // Internal path to settings page.
    'label' => t('Settings page'),
  ),
);

Type: array $settings

File

modules/crm_core_match/includes/crm_core_match.inc, line 105
Contains the matching engine.

Class

CrmCoreMatchEngine
Default implementation of CrmCoreMatchEngineInterface

Code

protected $settings;