You are here

CheckoutPane.php in Ubercart 8.4

File

uc_cart/src/Annotation/CheckoutPane.php
View source
<?php

namespace Drupal\uc_cart\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a checkout pane annotation object.
 *
 * @Annotation
 */
class CheckoutPane extends Plugin {

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

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

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

}

Classes

Namesort descending Description
CheckoutPane Defines a checkout pane annotation object.