function hook_webform_submissions_post_purge in Webform 6.x
Same name and namespace in other branches
- 8.5 webform.api.php \hook_webform_submissions_post_purge()
Respond to webform submissions being purged (after they are deleted).
Parameters
\Drupal\webform\WebformSubmissionInterface[] $webform_submissions: The webform submissions that were purged.
1 function implements hook_webform_submissions_post_purge()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- webform_test_handler_webform_submissions_post_purge in tests/
modules/ webform_test_handler/ webform_test_handler.module - Implements hook_webform_submissions_post_purge().
1 invocation of hook_webform_submissions_post_purge()
- WebformSubmissionStorage::purge in src/
WebformSubmissionStorage.php - Purge webform submissions.
File
- ./
webform.api.php, line 350 - Hooks related to Webform module.
Code
function hook_webform_submissions_post_purge(array $webform_submissions) {
}