theme_update_manager_update_form

7 update.manager.inc theme_update_manager_update_form($variables)
8 update.manager.inc theme_update_manager_update_form($variables)

Returns HTML for the first page in the update manager wizard to select projects.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

Related topics

File

modules/update/update.manager.inc, line 274
Administrative screens and processing functions for the update manager. This allows site administrators with the 'administer software updates' permission to either upgrade existing projects, or download and install new ones, so long as the…

Code

function theme_update_manager_update_form($variables) {
  $form = $variables['form'];
  $last = variable_get('update_last_check', 0);
  $output = theme('update_last_check', array('last' => $last));
  $output .= drupal_render_children($form);
  return $output;
}
Login or register to post comments