public function Basic::getRefundStatusId in Payment 8.2
Same name in this branch
- 8.2 src/Plugin/Payment/MethodConfiguration/Basic.php \Drupal\payment\Plugin\Payment\MethodConfiguration\Basic::getRefundStatusId()
- 8.2 src/Plugin/Payment/Method/Basic.php \Drupal\payment\Plugin\Payment\Method\Basic::getRefundStatusId()
Gets the status to set on payment refund.
Return value
string The plugin ID of the payment status to set.
1 call to Basic::getRefundStatusId()
- Basic::getRefundPaymentStatusSelector in src/
Plugin/ Payment/ MethodConfiguration/ Basic.php - Gets the payment status selector for the refund phase.
File
- src/
Plugin/ Payment/ MethodConfiguration/ Basic.php, line 189
Class
- Basic
- Provides the configuration for the payment_basic payment method plugin.
Namespace
Drupal\payment\Plugin\Payment\MethodConfigurationCode
public function getRefundStatusId() {
return $this->configuration['refund_status_id'];
}