_update_no_data

function _update_no_data

_update_no_data()

Returns a warning message when there is no data about available updates.

File

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

Code

function _update_no_data() {
  $destination = drupal_get_destination();
  return t('No update information available. <a href="drupal_7-modules-update-update-module-function-_update_no_data-@run_cron">Run cron<-a> or <a href=.html?lang=en"@check_manually">check manually</a>.', array(
    '@run_cron' => url('admin/reports/status/run-cron', array('query' => $destination)),
    '@check_manually' => url('admin/reports/updates/check', array('query' => $destination)),
  ));
}