function _ping_notify

6.x ping.module _ping_notify($name, $url)

Call hook_ping() in all modules to notify remote sites that there is new content at this one.

1 call to _ping_notify()
ping_cron in drupal-6.x/modules/ping/ping.module
Implementation of hook_cron().

File

drupal-6.x/modules/ping/ping.module, line 42
Alerts other sites that your site has been updated.

Code

function _ping_notify($name, $url) {
  module_invoke_all('ping', $name, $url);
}