protected function DeleteWebformSubmission::doExecute in RULES WEBFORM 3.x
Same name and namespace in other branches
- 8 src/Plugin/RulesAction/DeleteWebformSubmission.php \Drupal\rules_webform\Plugin\RulesAction\DeleteWebformSubmission::doExecute()
Delete the submission of the selected webform.
Parameters
array $webform_info: Array with information about webform submission data.
File
- src/
Plugin/ RulesAction/ DeleteWebformSubmission.php, line 32
Class
- DeleteWebformSubmission
- Action for deletion of a webform submission.
Namespace
Drupal\rules_webform\Plugin\RulesActionCode
protected function doExecute(array $webform_info) {
$webform_info['submission']
->delete();
\Drupal::state()
->delete('rules_webform.submission');
}