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