function system_authorized_batch_process in Drupal 7
Same name and namespace in other branches
- 8 core/modules/system/system.module \system_authorized_batch_process()
- 9 core/modules/system/system.module \system_authorized_batch_process()
Use authorize.php to run batch_process().
See also
Related topics
2 calls to system_authorized_batch_process()
- update_authorize_run_install in modules/
update/ update.authorize.inc - Installs a new project when invoked by authorize.php.
- update_authorize_run_update in modules/
update/ update.authorize.inc - Updates existing projects when invoked by authorize.php.
File
- modules/
system/ system.module, line 1849 - Configuration system that lets administrators modify the workings of the site.
Code
function system_authorized_batch_process() {
$finish_url = system_authorized_get_url();
$process_url = system_authorized_batch_processing_url();
batch_process($finish_url, $process_url);
}