update_cron
- Versions
- 6 – 7
update_cron()
Implementation of hook_cron().
Code
modules/update/update.module, line 295
<?php
function update_cron() {
$frequency = variable_get('update_check_frequency', 1);
$interval = 60 * 60 * 24 * $frequency;
// Cron should check for updates if there is no update data cached or if the
// configured update interval has elapsed.
if (!_update_cache_get('update_available_releases') || ((time() - variable_get('update_last_check', 0)) > $interval)) {
update_refresh();
_update_cron_notify();
}
}
?>Login or register to post comments 