function ping_cron in Drupal 5
Same name and namespace in other branches
- 4 modules/ping.module \ping_cron()
- 6 modules/ping/ping.module \ping_cron()
Implementation of hook_cron().
Fire off notifications of updates to remote sites.
File
- modules/
ping/ ping.module, line 26 - Alerts other sites that your site has been updated.
Code
function ping_cron() {
global $base_url;
if (variable_get('site_name', 0)) {
if (db_num_rows(db_query("SELECT nid FROM {node} WHERE status = 1 AND (created > '" . variable_get('cron_last', time()) . "' OR changed > '" . variable_get('cron_last', time()) . "')"))) {
_ping_notify(variable_get('site_name', ''), $base_url);
}
}
}