You are here

public function SelectMatchField::operators in CRM Core 7

Defines logical operators to use with this field.

This operators would be interpreted in fieldQuery() method.

Return value

array Assoc array of operators.

Overrides DefaultMatchingEngineFieldType::operators

1 call to SelectMatchField::operators()
EmailMatchField::fieldRender in modules/crm_core_default_matching_engine/includes/EmailMatchField.inc
Template used to render fields matching rules configuration form.

File

modules/crm_core_default_matching_engine/includes/SelectMatchField.inc, line 21
Implementation of DefaultMatchingEngineFieldTypeInterface for select fields.

Class

SelectMatchField
Class for handling select fields.

Code

public function operators() {
  return array(
    'equals' => t('Equals'),
  );
}