_update_no_data

6 update.module _update_no_data()
7 update.module _update_no_data()
8 update.module _update_no_data()

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

2 calls to _update_no_data()

File

modules/update/update.module, line 352
The "Update status" module checks for available updates of Drupal core and any installed contributed modules and themes. It warns site administrators if newer releases are available via the system status report (admin/reports/status), the…

Code

function _update_no_data() {
  $destination = drupal_get_destination();
  return t('No update information available. <a href="@run_cron">Run cron</a> or <a href="@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)),
  ));
}
Login or register to post comments