class PaymentOffsiteForm in Commerce PayPal 8
Provides the Off-site form for PayPal Checkout.
This is provided as a fallback when no "review" step is present in Checkout.
Hierarchy
- class \Drupal\Core\Plugin\PluginFormBase implements PluginAwareInterface, PluginFormInterface- class \Drupal\commerce_payment\PluginForm\PaymentGatewayFormBase implements PaymentGatewayFormInterface uses DependencySerializationTrait, StringTranslationTrait- class \Drupal\commerce_payment\PluginForm\PaymentOffsiteForm- class \Drupal\commerce_paypal\PluginForm\Checkout\PaymentOffsiteForm implements ContainerInjectionInterface
 
 
- class \Drupal\commerce_payment\PluginForm\PaymentOffsiteForm
 
- class \Drupal\commerce_payment\PluginForm\PaymentGatewayFormBase implements PaymentGatewayFormInterface uses DependencySerializationTrait, StringTranslationTrait
Expanded class hierarchy of PaymentOffsiteForm
File
- src/PluginForm/ Checkout/ PaymentOffsiteForm.php, line 16 
Namespace
Drupal\commerce_paypal\PluginForm\CheckoutView source
class PaymentOffsiteForm extends BasePaymentOffsiteForm implements ContainerInjectionInterface {
  /**
   * The Smart payment buttons builder.
   *
   * @var \Drupal\commerce_paypal\SmartPaymentButtonsBuilderInterface
   */
  protected $builder;
  /**
   * Constructs a new PaymentOffsiteForm object.
   *
   * @param \Drupal\commerce_paypal\SmartPaymentButtonsBuilderInterface $builder
   *   The Smart payment buttons builder.
   */
  public function __construct(SmartPaymentButtonsBuilderInterface $builder) {
    $this->builder = $builder;
  }
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('commerce_paypal.smart_payment_buttons_builder'));
  }
  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    /** @var \Drupal\commerce_payment\Entity\PaymentInterface $payment */
    $payment = $this->entity;
    $payment_gateway_plugin = $payment
      ->getPaymentGateway()
      ->getPlugin();
    if ($payment_gateway_plugin
      ->getPaymentSolution() === 'smart_payment_buttons') {
      $form['paypal_smart_payment_buttons'] = $this->builder
        ->build($payment
        ->getOrder(), $payment
        ->getPaymentGateway(), TRUE);
      return $form;
    }
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| DependencySerializationTrait:: | protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| PaymentGatewayFormBase:: | protected | property | The form entity. | |
| PaymentGatewayFormBase:: | public | function | Gets the form entity. Overrides PaymentGatewayFormInterface:: | |
| PaymentGatewayFormBase:: | public | function | Gets the form element to which errors should be assigned. Overrides PaymentGatewayFormInterface:: | 1 | 
| PaymentGatewayFormBase:: | public | function | Sets the form entity. Overrides PaymentGatewayFormInterface:: | |
| PaymentOffsiteForm:: | protected | property | The Smart payment buttons builder. | |
| PaymentOffsiteForm:: | public | function | Form constructor. Overrides PaymentOffsiteForm:: | |
| PaymentOffsiteForm:: | protected | function | Builds the redirect form. | |
| PaymentOffsiteForm:: | public static | function | Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: | |
| PaymentOffsiteForm:: | public static | function | Prepares the complete form for a POST redirect. | |
| PaymentOffsiteForm:: | constant | |||
| PaymentOffsiteForm:: | constant | |||
| PaymentOffsiteForm:: | public | function | Form submission handler. Overrides PluginFormInterface:: | |
| PaymentOffsiteForm:: | public | function | Constructs a new PaymentOffsiteForm object. | |
| PluginFormBase:: | protected | property | The plugin this form is for. | 3 | 
| PluginFormBase:: | public | function | Sets the plugin for this object. Overrides PluginAwareInterface:: | 1 | 
| PluginFormBase:: | public | function | Form validation handler. Overrides PluginFormInterface:: | 2 | 
| StringTranslationTrait:: | protected | property | The string translation service. | 1 | 
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 2 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | 
