function mollie_payment_get_api_key in Mollie Payment 7
Same name and namespace in other branches
- 7.2 mollie_payment.module \mollie_payment_get_api_key()
Get Mollie API key from payment.
1 call to mollie_payment_get_api_key()
- mollie_payment_get_client in ./
mollie_payment.module - Initialize Mollie API client.
File
- ./
mollie_payment.module, line 584 - Provides Mollie integration for the Payment platform.
Code
function mollie_payment_get_api_key(Payment $payment) {
$data = $payment->method->controller_data;
if ($data['test_mode']) {
return $data['mollie_test_api_key'];
}
return $data['mollie_api_key'];
}