You are here

class CommerceInlineForm in Commerce Core 8.2

Defines the inline form plugin annotation object.

Plugin namespace: Plugin\Commerce\InlineForm.

Hierarchy

Expanded class hierarchy of CommerceInlineForm

See also

Plugin API

1 file declares its use of CommerceInlineForm
InlineFormManager.php in src/InlineFormManager.php
5 classes are annotated with CommerceInlineForm
ContentEntity in src/Plugin/Commerce/InlineForm/ContentEntity.php
Provides an inline form for managing a content entity.
CouponRedemption in modules/promotion/src/Plugin/Commerce/InlineForm/CouponRedemption.php
Provides an inline form for redeeming a coupon.
CustomerProfile in modules/order/src/Plugin/Commerce/InlineForm/CustomerProfile.php
Provides an inline form for managing a customer profile.
PaymentGatewayForm in modules/payment/src/Plugin/Commerce/InlineForm/PaymentGatewayForm.php
Provides a form element for embedding payment gateway forms.
PluginConfiguration in src/Plugin/Commerce/InlineForm/PluginConfiguration.php
Provides a plugin configuration inline form.

File

src/Annotation/CommerceInlineForm.php, line 16

Namespace

Drupal\commerce\Annotation
View source
class CommerceInlineForm extends Plugin {

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

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

}

Members

Namesort descending Modifiers Type Description Overrides
CommerceInlineForm::$id public property The plugin ID.
CommerceInlineForm::$label public property The plugin label.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2