1.20.x update.theme.inc | theme_update_manager_update_form($variables) |
Returns HTML for the first page in the process of updating projects.
Parameters
$variables: An associative array containing:
- form: A render element representing the form.
Related topics
File
- modules/
update/ update.theme.inc, line 16 - Theme functions for the Update module.
Code
function theme_update_manager_update_form($variables) {
$form = $variables['form'];
$last = state_get('update_last_check', 0);
$output = theme('update_last_check', array('last' => $last));
$output .= backdrop_render_children($form);
return $output;
}