You are here

PardotFormMapFormatterPlugin.php in Pardot Integration 2.x

File

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

namespace Drupal\pardot\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Pardot form map plugin item annotation object.
 *
 * @see \Drupal\pardot\Plugin\PardotFormMapFormatterPluginManager
 * @see plugin_api
 *
 * @Annotation
 */
class PardotFormMapFormatterPlugin extends Plugin {

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

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

  /**
   * An array of entity types this would work in.
   *
   * @var array
   *
   */
  public $types;

}

Classes

Namesort descending Description
PardotFormMapFormatterPlugin Defines a Pardot form map plugin item annotation object.