You are here

FormMapHandlerPlugin.php in Pardot Integration 2.x

File

src/Annotation/FormMapHandlerPlugin.php
View source
<?php

namespace Drupal\pardot\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Form Map Hanlder Plugin item annotation object.
 *
 * @see \Drupal\pardot\Plugin\FormMapHandlerPluginManager
 * @see plugin_api
 *
 * @Annotation
 */
class FormMapHandlerPlugin extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The label of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

}

Classes

Namesort descending Description
FormMapHandlerPlugin Defines a Form Map Hanlder Plugin item annotation object.