public function Basic::getCaptureStatusId in Payment 8.2
Same name in this branch
- 8.2 src/Plugin/Payment/MethodConfiguration/Basic.php \Drupal\payment\Plugin\Payment\MethodConfiguration\Basic::getCaptureStatusId()
- 8.2 src/Plugin/Payment/Method/Basic.php \Drupal\payment\Plugin\Payment\Method\Basic::getCaptureStatusId()
Gets the status to set on payment capture.
Return value
string The plugin ID of the payment status to set.
2 calls to Basic::getCaptureStatusId()
- Basic::doCapturePayment in src/
Plugin/ Payment/ Method/ Basic.php - Performs the actual payment capture.
- Basic::doCapturePaymentAccess in src/
Plugin/ Payment/ Method/ Basic.php - Performs a payment method-specific access check for payment capture.
File
- src/
Plugin/ Payment/ Method/ Basic.php, line 111
Class
- Basic
- A basic payment method that does not transfer money.
Namespace
Drupal\payment\Plugin\Payment\MethodCode
public function getCaptureStatusId() {
return $this->pluginDefinition['capture_status_id'];
}