summaryrefslogtreecommitdiff
path: root/modules/contact.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/contact.module')
-rw-r--r--modules/contact.module11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/contact.module b/modules/contact.module
index 91ee383ef..58f3756e5 100644
--- a/modules/contact.module
+++ b/modules/contact.module
@@ -14,6 +14,17 @@ define('CONTACT_HOURLY_THRESHOLD', 3);
*/
function contact_help($section) {
switch ($section) {
+ case 'admin/help#contact':
+ $output = '<p>'. t('The contact module allows other users to contact you by e-mail via your personal contact form. Users can send a subject and message in the contact form. The contact module is important in helping make connections among members of your community.') .'</p>';
+ $output .= '<p>'. t('Users can administer the contact settings in their account settings. Note that a users e-mail address is not made public and that privileged users such as site administrators are able to contact you even if you choose not to enable this feature. If users activate the personal contact form, then a contact tab will appear in their user profile.') .'</p>';
+ $output .= t('<p>You can</p>
+<ul>
+<li>view user <a href="%profile">profiles</a>.</li>
+<li>enable the personal contact form in <a href="%admin-user">administer &gt;&gt; user &gt;&gt; edit tab &gt;&gt; account settings tab &gt;&gt; personal contact settings</a>.</li>
+</ul>
+', array('%profile' => url('profile'), '%admin-user' => url('admin/user')));
+ $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%contact">Contact page</a>.', array('%contact' => 'http://www.drupal.org/handbook/modules/contact/')) .'</p>';
+ return $output;
case 'admin/modules#description':
return t('Enables the use of both personal and site-wide contact forms.');
case 'admin/contact':