ping_ping
- Versions
- 4.6 – 6
ping_ping($name = '', $url = '')
Implementation of hook_ping().
Notifies pingomatic.com, blo.gs, and technorati.com of changes at this site.
Code
modules/ping/ping.module, line 51
<?php
function ping_ping($name = '', $url = '') {
$result = xmlrpc('http://rpc.pingomatic.com', 'weblogUpdates.ping', $name, $url);
if ($result === FALSE) {
watchdog('directory ping', 'Failed to notify pingomatic.com (site).', array(), WATCHDOG_WARNING);
}
}
?>Login or register to post comments 