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::getExecutePaymentStatusSelector in src/Plugin/Payment/MethodConfiguration/Basic.php
Gets the payment status selector for the execute phase.

File

src/Plugin/Payment/MethodConfiguration/Basic.php, line 117

Class

Basic
Provides the configuration for the payment_basic payment method plugin.

Namespace

Drupal\payment\Plugin\Payment\MethodConfiguration

Code

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