You are here

class PayPalStandard in PayPal for Payment 2.0.x

Same name in this branch
  1. 2.0.x src/Plugin/Payment/MethodConfiguration/PayPalStandard.php \Drupal\paypal_payment\Plugin\Payment\MethodConfiguration\PayPalStandard
  2. 2.0.x src/Plugin/Payment/Method/PayPalStandard.php \Drupal\paypal_payment\Plugin\Payment\Method\PayPalStandard
Same name and namespace in other branches
  1. 8 src/Plugin/Payment/Method/PayPalStandard.php \Drupal\paypal_payment\Plugin\Payment\Method\PayPalStandard

PayPal Standard payment method.

Plugin annotation


@PaymentMethod(
  deriver = "\Drupal\paypal_payment\Plugin\Payment\Method\PayPalStandardDeriver",
  id = "paypal_payment_standard",
  operations_provider = "\Drupal\paypal_payment\Plugin\Payment\Method\PayPalStandardOperationsProvider",
)

Hierarchy

  • class \Drupal\paypal_payment\Plugin\Payment\Method\PayPalBasic extends \Drupal\payment\Plugin\Payment\Method\Basic

Expanded class hierarchy of PayPalStandard

File

src/Plugin/Payment/Method/PayPalStandard.php, line 17

Namespace

Drupal\paypal_payment\Plugin\Payment\Method
View source
class PayPalStandard extends PayPalBasic {

  /**
   * {@inheritdoc}
   */
  public function getWebhookUrl() : string {

    // TODO: Implement getWebhookUrl() method.
    return '';
  }

  /**
   * {@inheritdoc}
   */
  public function getWebhookId() : string {

    // TODO: Implement getWebhookId() method.
    return '';
  }

  /**
   * {@inheritdoc}
   */
  public function getApiContext($type) : ApiContext {

    // TODO: Implement getApiContext() method.
  }

}

Members