You are here

public function Basic::getExecuteStatusId in Payment 8.2

Same name in this branch
  1. 8.2 src/Plugin/Payment/MethodConfiguration/Basic.php \Drupal\payment\Plugin\Payment\MethodConfiguration\Basic::getExecuteStatusId()
  2. 8.2 src/Plugin/Payment/Method/Basic.php \Drupal\payment\Plugin\Payment\Method\Basic::getExecuteStatusId()

Gets the status to set on payment execution.

Return value

string The plugin ID of the payment status to set.

1 call to Basic::getExecuteStatusId()
Basic::doExecutePayment in src/Plugin/Payment/Method/Basic.php
Performs the actual payment execution.

File

src/Plugin/Payment/Method/Basic.php, line 101

Class

Basic
A basic payment method that does not transfer money.

Namespace

Drupal\payment\Plugin\Payment\Method

Code

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