| Versionen | |
|---|---|
| drupal6 – drupal7 | system_batch_page() |
Default page callback for batches.
modules/
<?php
function system_batch_page() {
require_once './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.
print theme('page', $output, FALSE, FALSE);
}
}
?>
Kommentare
Kommentar hinzufügen