ping_help
- Versions
- 4.6 – 5
ping_help($section)- 6
ping_help($path, $arg)
Implementation of hook_help().
Code
modules/ping.module, line 11
<?php
function ping_help($section) {
switch ($section) {
case 'admin/help#ping':
$output .= t("
<p>Drupal can automatically send notifications (called \"pings\") to the %pingomatic to tell them that your site has changed. In turn pingomatic.com will ping other services like weblogs.com, Technorati, blo.gs, BlogRolling, Feedster.com, Moreover, etc.</p>
<p>The ping feature requires crontab.</p>", array('%pingomatic' => '<a href="http://pingomatic.com/">http://pingomatic.com/</a>'));
break;
case 'admin/modules#description':
$output = t('Alerts other sites when your site has been updated.');
break;
}
return $output;
}
?>Login or register to post comments 