You are here

function _update_status_no_data in Update Status 5.2

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

3 calls to _update_status_no_data()
update_status_requirements in ./update_status.module
Implementation of hook_requirements.
update_status_settings in ./update_status.module
Menu callback. Show the settings for the update status module.
update_status_status in ./update_status.module
Menu callback. Generate a page about the update status of projects.

File

./update_status.module, line 674

Code

function _update_status_no_data() {
  $destination = drupal_get_destination();
  return t('No information is available about potential new releases for currently installed modules. To check for updates, you may need to <a href="@run_cron">run cron</a> or you can <a href="@check_manually">check manually</a>. Please note that checking for available updates can take a long time, so please be patient.', array(
    '@run_cron' => url('admin/logs/status/run-cron', $destination),
    '@check_manually' => url('admin/logs/updates/check', $destination),
  ));
}