function system_batch_page
Same name and namespace in other branches
- 6.x drupal-6.x/modules/system/system.admin.inc \system_batch_page()
Default page callback for batches.
3 string references to 'system_batch_page'
- drupal-6.bare.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.bare.database.php - Bare installation of Drupal 6.17, for test purposes.
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- system_menu in drupal-7.x/
modules/ system/ system.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ system/ system.admin.inc, line 2362 - Admin page callbacks for the system module.
Código
function system_batch_page() {
require_once DRUPAL_ROOT . '/includes/batch.inc';
$output = _batch_page();
if ($output === FALSE) {
drupal_access_denied();
}
elseif (isset($output)) {
// Force a page without blocks or messages to
// display a list of collected messages later.
drupal_set_page_content($output);
$page = element_info('page');
$page['#show_messages'] = FALSE;
return $page;
}
}