| Versions | |
|---|---|
| 7 | theme_update_manager_update_form($variables) |
Returns HTML for the first page in the update manager wizard to select projects.
$variables An associative array containing:
drupal/
<?php
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;
}
?>