function theme_update_manager_update_form

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.manager.inc, line 276
Administrative screens and processing functions of the Update Manager module.

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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!update!update.manager.inc/function/theme_update_manager_update_form/7.x