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.
1 call to Basic::getCaptureStatusId()
- Basic::getCapturePaymentStatusSelector in src/
Plugin/ Payment/ MethodConfiguration/ Basic.php - Gets the payment status selector for the capture phase.
File
- src/
Plugin/ Payment/ MethodConfiguration/ Basic.php, line 141
Class
- Basic
- Provides the configuration for the payment_basic payment method plugin.
Namespace
Drupal\payment\Plugin\Payment\MethodConfigurationCode
public function getCaptureStatusId() {
return $this->configuration['capture_status_id'];
}