You are here

CrmCoreMatchEngine.php in CRM Core 8

File

modules/crm_core_match/src/Annotation/CrmCoreMatchEngine.php
View source
<?php

namespace Drupal\crm_core_match\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object for match field plugins.
 *
 * @Annotation
 */
class CrmCoreMatchEngine extends Plugin {

  /**
   * The engine ID.
   *
   * @var string
   */
  protected $id;

  /**
   * The engines label.
   *
   * @var \Drupal\Core\StringTranslation\TranslationWrapper
   *
   * @ingroup plugin_translatable
   */
  protected $label;

  /**
   * The match engine summary.
   *
   * @var \Drupal\Core\StringTranslation\TranslationWrapper
   */
  protected $summary;

}

Classes

Namesort descending Description
CrmCoreMatchEngine Defines a Plugin annotation object for match field plugins.