_ping_notify

5 ping.module _ping_notify($name, $url)
6 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()

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);
}
Login or register to post comments