function ping_help

6.x ping.module ping_help($path, $arg)

Implementation of hook_help().

File

drupal-6.x/modules/ping/ping.module, line 11
Alerts other sites that your site has been updated.

Code

function ping_help($path, $arg) {
  switch ($path) {
    case 'admin/help#ping':
      $output = '<p>' . t('The ping module is useful for notifying interested sites that your site has changed. It automatically sends notifications, or "pings", to the <a href="@external-http-pingomatic-com">pingomatic</a> service about new or updated content. In turn, <a href="@external-http-pingomatic-com">pingomatic</a> notifies other popular services, including weblogs.com, Technorati, blo.gs, BlogRolling, Feedster.com, and Moreover.', array('@external-http-pingomatic-com' => 'http://pingomatic.com/')) . '</p>';
      $output .= '<p>' . t('The ping module requires a correctly configured <a href="@cron">cron maintenance task</a>.', array('@cron' => url('admin/reports/status'))) . '</p>';
      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@ping">Ping module</a>.', array('@ping' => 'http://drupal.org/handbook/modules/ping/')) . '</p>';
      return $output;
  }
}