function gdpr_tasks_process_gdpr_sar_worker in General Data Protection Regulation 7
Worker callback for prcessing SARs requests.
1 string reference to 'gdpr_tasks_process_gdpr_sar_worker'
- gdpr_tasks_cron_queue_info in modules/
gdpr_tasks/ gdpr_tasks.module - Implements hook_cron_queue_info().
File
- modules/
gdpr_tasks/ gdpr_tasks.module, line 427 - Module file for the GDPR Tasks module.
Code
function gdpr_tasks_process_gdpr_sar_worker($task_id) {
$worker = new \GdprTasksSarWorker();
$worker
->processItem($task_id);
}