function system_authorized_batch_process

Same name and namespace in other branches
  1. 7.x modules/system/system.module \system_authorized_batch_process()
  2. 9 core/modules/system/system.module \system_authorized_batch_process()
  3. 8.9.x core/modules/system/system.module \system_authorized_batch_process()
  4. 10 core/modules/system/system.module \system_authorized_batch_process()

Use authorize.php to run batch_process().

See also

batch_process()

Related topics

1 call to system_authorized_batch_process()
update_authorize_run_update in core/modules/update/update.authorize.inc
Updates existing projects when invoked by authorize.php.

File

core/modules/system/system.module, line 301

Code

function system_authorized_batch_process() {
  @trigger_error(__FUNCTION__ . '() is deprecated in drupal:11.2.0 and is removed from drupal:12.0.0. There is no replacement. Use composer to manage the code for your site. See https://www.drupal.org/node/3512364', E_USER_DEPRECATED);
  $finish_url = system_authorized_get_url();
  $process_url = system_authorized_batch_processing_url();
  return batch_process($finish_url->setAbsolute()
    ->toString(), $process_url);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.