public function PayPalStandard::getEmail in PayPal for Payment 2.0.x
Same name and namespace in other branches
- 8 src/Plugin/Payment/MethodConfiguration/PayPalStandard.php \Drupal\paypal_payment\Plugin\Payment\MethodConfiguration\PayPalStandard::getEmail()
Gets the email of this configuration.
Return value
string
2 calls to PayPalStandard::getEmail()
- PayPalStandard::getDerivativeConfiguration in src/
Plugin/ Payment/ MethodConfiguration/ PayPalStandard.php - @inheritDoc
- PayPalStandard::processBuildConfigurationForm in src/
Plugin/ Payment/ MethodConfiguration/ PayPalStandard.php
File
- src/
Plugin/ Payment/ MethodConfiguration/ PayPalStandard.php, line 25
Class
- PayPalStandard
- Provides the configuration for the PayPal Standard payment method plugin.
Namespace
Drupal\paypal_payment\Plugin\Payment\MethodConfigurationCode
public function getEmail() : string {
return $this->configuration['email'] ?? '';
}