You are here

UbercartOrderPane.php in Ubercart 8.4

File

uc_order/src/Annotation/UbercartOrderPane.php
View source
<?php

namespace Drupal\uc_order\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an order pane annotation object.
 *
 * @Annotation
 */
class UbercartOrderPane extends Plugin {

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

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

  /**
   * The plugin weight.
   *
   * @var int
   */
  public $weight;

}

Classes

Namesort descending Description
UbercartOrderPane Defines an order pane annotation object.