You are here

public function MolliePayment::setExecuteStatusId in Mollie Payment 8.2

Sets the status to set on payment execution.

Parameters

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

Return value

$this

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

File

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

Class

MolliePayment
Provides the configuration for the mollie_payment payment method plugin.

Namespace

Drupal\mollie_payment\Plugin\Payment\MethodConfiguration

Code

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