You are here

function _ping_notify in Drupal 6

Same name and namespace in other branches
  1. 4 modules/ping.module \_ping_notify()
  2. 5 modules/ping/ping.module \_ping_notify()

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 modules/ping/ping.module
Implementation of hook_cron().

File

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);
}