You are here

function system_authorized_batch_processing_url in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/system.module \system_authorized_batch_processing_url()

Returns the URL for the authorize.php script when it is processing a batch.

Parameters

array $options: Optional array of options to pass to url().

Return value

\Drupal\Core\Url

Related topics

1 call to system_authorized_batch_processing_url()
system_authorized_batch_process in core/modules/system/system.module
Use authorize.php to run batch_process().

File

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

Code

function system_authorized_batch_processing_url(array $options = array()) {
  $options['query'] = array(
    'batch' => '1',
  );
  return system_authorized_get_url($options);
}