public function Basic::getExecuteStatusId in Payment 8.2
Same name in this branch
- 8.2 src/Plugin/Payment/MethodConfiguration/Basic.php \Drupal\payment\Plugin\Payment\MethodConfiguration\Basic::getExecuteStatusId()
- 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\MethodCode
public function getExecuteStatusId() {
return $this->pluginDefinition['execute_status_id'];
}