1.20.x system.module system_authorized_batch_process($redirect_callback = 'backdrop_goto')

Use authorize.php to run batch_process().

See also

batch_process()

Related topics

File

modules/system/system.module, line 2255
Configuration system that lets administrators modify the workings of the site.

Code

function system_authorized_batch_process($redirect_callback = 'backdrop_goto') {
  $finish_url = system_authorized_get_url();
  $process_url = system_authorized_batch_processing_url();
  batch_process($finish_url, $process_url, $redirect_callback);
}