From a8b218827a400cf5ced7db133be0a0f9e2180875 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 1 Nov 2005 10:17:34 +0000 Subject: - Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! / --- modules/ping/ping.module | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'modules/ping') diff --git a/modules/ping/ping.module b/modules/ping/ping.module index f8006346e..d43138378 100644 --- a/modules/ping/ping.module +++ b/modules/ping/ping.module @@ -12,17 +12,20 @@ function ping_help($section) { switch ($section) { case 'admin/help#ping': - $output .= t(" -

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.

-

The ping feature requires crontab.

", array('%pingomatic' => 'http://pingomatic.com/')); - break; - + $output = '

'. t('The ping module is useful for notifying interested sites that your site has changed. It automatically sends notifications (called "pings") to the pingomatic service to tell it that your site has changed. In turn pingomatic will ping other services such as weblogs.com, Technorati, blo.gs, BlogRolling, Feedster.com, Moreover, etc.', array('%external-http-pingomatic-com' => 'http://pingomatic.com/')) .'

'; + $output .= '

'. t('The ping module requires cron or a similar periodic job scheduler to be enabled.') .'

'; + $output .= t('

You can:

+

+', array('%admin-modules' => url('admin/modules'), '%file-cron' => 'cron.php', '%external-http-drupal-org-node-23714' => 'http://drupal.org/node/23714')); + $output .= '

'. t('For more information please read the configuration and customization handbook Ping page.', array('%ping' => 'http://www.drupal.org/handbook/modules/ping/')) .'

'; + return $output; case 'admin/modules#description': - $output = t('Alerts other sites when your site has been updated.'); - break; + return('Alerts other sites when your site has been updated.'); } - - return $output; } /** -- cgit v1.2.3