You are here

SelectFieldHandler.php in CRM Core 8.2

File

modules/crm_core_match/src/Plugin/crm_core_match/field/SelectFieldHandler.php
View source
<?php

namespace Drupal\crm_core_match\Plugin\crm_core_match\field;


/**
 * Class for handling select fields.
 */
class SelectFieldHandler extends FieldHandlerBase {

  /**
   * {@inheritdoc}
   */
  public function getOperators($property = 'value') {
    return array(
      'equals' => t('Equals'),
    );
  }

}

Classes

Namesort descending Description
SelectFieldHandler Class for handling select fields.