public function MolliePayment::getExecuteStatusId in Mollie Payment 8.2
Same name in this branch
- 8.2 src/Plugin/Payment/MethodConfiguration/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\MethodConfiguration\MolliePayment::getExecuteStatusId()
- 8.2 src/Plugin/Payment/Method/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\Method\MolliePayment::getExecuteStatusId()
Gets the status to set on payment execution.
Return value
string The plugin ID of the payment status to set.
3 calls to MolliePayment::getExecuteStatusId()
- MolliePayment::getCapturePaymentStatusSelector in src/
Plugin/ Payment/ MethodConfiguration/ MolliePayment.php - Gets the payment status selector for the capture phase.
- MolliePayment::getExecutePaymentStatusSelector in src/
Plugin/ Payment/ MethodConfiguration/ MolliePayment.php - Gets the payment status selector for the execute phase.
- MolliePayment::getRefundPaymentStatusSelector in src/
Plugin/ Payment/ MethodConfiguration/ MolliePayment.php - Gets the payment status selector for the refund phase.
File
- src/
Plugin/ Payment/ MethodConfiguration/ MolliePayment.php, line 115
Class
- MolliePayment
- Provides the configuration for the mollie_payment payment method plugin.
Namespace
Drupal\mollie_payment\Plugin\Payment\MethodConfigurationCode
public function getExecuteStatusId() {
return $this->configuration['execute_status_id'];
}