function update_task_list
Same name and namespace in other branches
- 7.x drupal-7.x/update.php \update_task_list()
Add the update task list to the current page.
3 calls to update_task_list()
- update_info_page in drupal-6.x/
update.php - update_results_page in drupal-6.x/
update.php - update_selection_page in drupal-6.x/
update.php - Renders a form with a list of available database updates.
Archivo
- drupal-6.x/
update.php, line 555 - Administrative page for handling updates from one Drupal version to another.
Código
function update_task_list($active = NULL) {
// Default list of tasks.
$tasks = array(
'info' => 'Overview',
'select' => 'Select updates',
'run' => 'Run updates',
'finished' => 'Review log',
);
drupal_set_content('left', theme('task_list', $tasks, $active));
}