You are here

public function MolliePayment::getRefundStatusId in Mollie Payment 8.2

Same name in this branch
  1. 8.2 src/Plugin/Payment/MethodConfiguration/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\MethodConfiguration\MolliePayment::getRefundStatusId()
  2. 8.2 src/Plugin/Payment/Method/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\Method\MolliePayment::getRefundStatusId()

Gets the status to set on payment refund.

Return value

string The plugin ID of the payment status to set.

2 calls to MolliePayment::getRefundStatusId()
MolliePayment::doRefundPayment in src/Plugin/Payment/Method/MolliePayment.php
Performs the actual payment refund.
MolliePayment::doRefundPaymentAccess in src/Plugin/Payment/Method/MolliePayment.php
Performs a payment method-specific access check for payment refunds.

File

src/Plugin/Payment/Method/MolliePayment.php, line 138

Class

MolliePayment
A payment method using Mollie.

Namespace

Drupal\mollie_payment\Plugin\Payment\Method

Code

public function getRefundStatusId() {
  return $this->pluginDefinition['refund_status_id'];
}