| 5 ping.module | ping_ping($name = '', $url = '') |
| 6 ping.module | ping_ping($name = '', $url = '') |
Implementation of hook_ping().
Notifies pingomatic.com, blo.gs, and technorati.com of changes at this site.
File
- modules/
ping.module, line 58 - Alerts other sites that your site has been updated.
Code
function ping_ping($name = '', $url = '') {
$result = xmlrpc('http://rpc.pingomatic.com', 'weblogUpdates.ping', $name, $url);
if ($result === FALSE) {
watchdog('directory ping', t('Failed to notify pingomatic.com (site).'), WATCHDOG_WARNING);
}
}
Login or register to post comments