function _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 drupal-6.x/
modules/ ping/ ping.module - Implementation of hook_cron().
Archivo
- drupal-6.x/
modules/ ping/ ping.module, line 42 - Alerts other sites that your site has been updated.
Código
function _ping_notify($name, $url) {
module_invoke_all('ping', $name, $url);
}