You are here

public function MolliePayment::getRefund 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::getRefund()
  2. 8.2 src/Plugin/Payment/Method/MolliePayment.php \Drupal\mollie_payment\Plugin\Payment\Method\MolliePayment::getRefund()

Gets whether or not refunds are supported.

Parameters

bool: Whether or not to support refunds.

1 call to MolliePayment::getRefund()
MolliePayment::processBuildConfigurationForm in src/Plugin/Payment/MethodConfiguration/MolliePayment.php
Implements a form API #process callback.

File

src/Plugin/Payment/MethodConfiguration/MolliePayment.php, line 211

Class

MolliePayment
Provides the configuration for the mollie_payment payment method plugin.

Namespace

Drupal\mollie_payment\Plugin\Payment\MethodConfiguration

Code

public function getRefund() {
  return $this->configuration['refund'];
}