You are here

CommerceFedExPlugin.php in Commerce FedEx 8

File

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

namespace Drupal\commerce_fedex\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines the FedEx Service plugin annotation object.
 *
 * Plugin namespace: Plugin\Commerce\FedEx.
 *
 * @see plugin_api
 *
 * @Annotation
 */
class CommerceFedExPlugin extends Plugin {

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

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

  /**
   * The options detail box label.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $options_label;

  /**
   * The options detail box description.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $options_description;

}

Classes

Namesort descending Description
CommerceFedExPlugin Defines the FedEx Service plugin annotation object.