_update_no_data
modules/update/update.module, строка 323
- Версии
- 6
_update_no_data()
Prints a warning message when there is no data about available updates.
Код
<?php
function _update_no_data() {
$destination = drupal_get_destination();
return t('No information is available about potential new releases for currently installed modules and themes. 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/reports/status/run-cron', array('query' => $destination)),
'@check_manually' => url('admin/reports/updates/check', array('query' => $destination)),
));
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии