You are here

public function MolliePayment::setCaptureStatusId in Mollie Payment 8.2

Sets the status to set on payment capture.

Parameters

string $status: The plugin ID of the payment status to set.

Return value

$this

1 call to MolliePayment::setCaptureStatusId()
MolliePayment::submitConfigurationForm in src/Plugin/Payment/MethodConfiguration/MolliePayment.php
Form submission handler.

File

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

Class

MolliePayment
Provides the configuration for the mollie_payment payment method plugin.

Namespace

Drupal\mollie_payment\Plugin\Payment\MethodConfiguration

Code

public function setCaptureStatusId($status) {
  $this->configuration['capture_status_id'] = $status;
  return $this;
}