ping_cron

  1. drupal
    1. 4.7
    2. 5 ping.module
    3. 6 ping.module
Versions
4.7 – 6 ping_cron()

Implementation of hook_cron().

Fire off notifications of updates to remote sites.

Code

modules/ping.module, line 36

<?php
function ping_cron() {
  global $base_url;

  if (variable_get('site_name', 0) && variable_get('site_slogan', 0)) {
    if (db_num_rows(db_query("SELECT nid FROM {node} WHERE status = 1 AND moderate = 0 AND (created > '" . variable_get('cron_last', time()) . "' OR changed > '" . variable_get('cron_last', time()) . "')"))) {
      _ping_notify(variable_get('site_name', '') . ' - ' . variable_get('site_slogan', ''), $base_url);
    }
  }
}
?>