Index: modules/volunteer/volunteer.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/volunteer/volunteer.module,v retrieving revision 1.47 diff -u -r1.47 volunteer.module --- modules/volunteer/volunteer.module 21 Nov 2005 18:33:22 -0000 1.47 +++ modules/volunteer/volunteer.module 29 Nov 2005 01:21:37 -0000 @@ -7,40 +7,31 @@ */ function volunteer_help($section) { switch($section) { + case 'admin/help#volunteer': + $output = '
'. t('Volunteer module helps you organize people for events. There is a managed email correspondence with the volunteer, as well as the ability to rate their volunteer performance at the end. It allows admins to further designate users as volunteer coordinators who can be designated as the contact person for volunteers for an event.') .'
'; + $output .= ''. t('This module now relies on the CiviCRM module to handle contact information for volunteers. The volunteer module is frequently used with the RSVP module to invite community members. The module allows for default settings, contact settings, message settings, and email settings.') .'
'; + $output .= t('You can
+'. t('For more information please read the configuration and customization handbook Volunteer page.', array('%volunteer' => 'http://www.drupal.org/handbook/modules/volunteer/')) .'
'; + return $output; case 'admin/modules#description': return t('Provides volunteer functionality for events.'); - break; case 'volunteer/overview': return t('This page shows you all volunteers together with the events for which they volunteered and when they signed up.'); - break; - case 'admin/help/volunteer': - case 'admin/help#volunteer': - return t('Volunteer module helps you organize people for events. There is a managed email correspondence with the volunteer, as well as the ability to rate their volunteer performance at the end. It allows admins to further designate users as volunteer coordinators who can be designated as the contact person for volunteers for an event.
-This module now relies on the CiviCRM module to handle contact information for volunteers. The volunteer module is frequently used with the RSVP module to invite community members. The module allows for default settings, contact settings, message settings, and email settings.
-You can
-For more information, read the configuration and customization handbook volunteer page.
', - array( -'%admin-settings-volunteer' => url('admin/settings/volunteer'), -'%node-add' => url('node/add'), -'%admin-block' => url('admin/block'), -'%event' => url('event'), -'%civicrm-group-add' => url('civicrm/group/add'), -'%civicrm-admin-uf-group' => url('civicrm/admin/uf/group', 'action=add'), -'%admin-settings-volunteer' => url('admin/settings/volunteer'), -'%drupal-org-volunteer' => 'http://drupal.org/handbook/modules/volunteer' -)); } }