function theme_update_last_check

Returns HTML for the last time we checked for update data.

In addition to properly formatting the given timestamp, this function also provides a "Check manually" link that refreshes the available update and redirects back to the same page.

Parameters

$variables: An associative array containing:

  • last: The timestamp when the site last checked for available updates.

See also

theme_update_report()

theme_update_available_updates_form()

Related topics

2 theme calls to theme_update_last_check()
theme_update_manager_update_form in drupal/modules/update/update.manager.inc
Returns HTML for the first page in the process of updating projects.
theme_update_report in drupal/modules/update/update.report.inc
Returns HTML for the project status report.

File

drupal/modules/update/update.module, line 660
Handles updates of Drupal core and contributed projects.

Code

function theme_update_last_check($variables) {
  $last = $variables['last'];
  $output = '<div class="update checked">';
  $output .= $last ? t('Last checked: @time ago', array(
    '@time' => format_interval(REQUEST_TIME - $last),
  )) : t('Last checked: never');
  $output .= ' <span class="check-manually">(' . l(t('Check manually'), 'admin/reports/updates/check', array(
    'query' => drupal_get_destination(),
  )) . ')</span>';
  $output .= "</div>\n";
  return $output;
}