_ping_notify

Definition

_ping_notify($name, $url)
ping/ping.module, line 40

Description

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

Code

<?php
function _ping_notify($name, $url) {
  module_invoke_all('ping', $name, $url);
}
?>