function _ping_notify in Drupal 5
Same name and namespace in other branches
- 4 modules/ping.module \_ping_notify()
- 6 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 40 - Alerts other sites that your site has been updated.
Code
function _ping_notify($name, $url) {
module_invoke_all('ping', $name, $url);
}