From cba6fb8dc5b867c010cde18f75fc006556eed127 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Thu, 26 Nov 2009 02:55:53 +0000 Subject: #632996 by JuliaKM, arianek, marvil07, and jhodgdon: Convert Forum module to new help text standard. --- modules/forum/forum.module | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'modules/forum') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 568256472..a8cb7106b 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -12,14 +12,17 @@ function forum_help($path, $arg) { switch ($path) { case 'admin/help#forum': - $output = '

' . t('The forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. The forum topic menu item (under Add new content on the Navigation menu) creates the initial post of a new threaded discussion, or thread.', array('@create-topic' => url('node/add/forum'))) . '

'; - $output .= '

' . t('A threaded discussion occurs as people leave comments on a forum topic (or on other comments within that topic). A forum topic is contained within a forum, which may hold many similar or related forum topics. Forums are (optionally) nested within a container, which may hold many similar or related forums. Both containers and forums may be nested within other containers and forums, and provide structure for your message board. By carefully planning this structure, you make it easier for users to find and comment on a specific forum topic.') . '

'; - $output .= '

' . t('When administering a forum, note that:') . '

'; - $output .= ''; - $output .= '

' . t('For more information, see the online handbook entry for Forum module.', array('@forum' => 'http://drupal.org/handbook/modules/forum/')) . '

'; + $output = '

' . t('About') . '

'; + $output .= '

' . t('The Forum module lets you create threaded discussion forums with functionality similar to other message board systems. Forums are useful because they allow community members to discuss topics with one another while ensuring those conversations are archived for later reference. Forums behave by posting topics and threads in nested hierarchies, which allow many discussions to be categorized in various ways. The forum topic link on the Add new content page creates the first post of a new threaded discussion, or thread. For more information, see the online handbook entry for Forum module.', array('@create-topic' => url('node/add/forum'), '@content-add' => url('node/add'), '@forum' => 'http://drupal.org/handbook/modules/forum/')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Navigation') . '
'; + $output .= '
' . t('Enabling the Forum module provides a default Forums menu item in the navigation menu that links to the main forums page.', array('@forums' => url('forum'))) . '
'; + $output .= '
' . t('Moving forum topics') . '
'; + $output .= '
' . t('A forum topic (and all of its comments) may be moved between forums by selecting a different forum while editing a forum topic. When moving a forum topic between forums, the Leave shadow copy option creates a link in the original forum pointing to the new location.') . '
'; + $output .= '
' . t('Locking and disabling comments') . '
'; + $output .= '
' . t('Selecting Closed under Comment settings while editing a forum topic will lock (prevent new comments on) the thread. Selecting Disabled under Comment settings while editing a forum topic will hide all existing comments on the thread, and prevent new ones.') . '
'; + $output .= '
'; return $output; case 'admin/structure/forum': return '

' . t('Forums contain forum topics. Use containers to group related forums.') . '

'; @@ -28,7 +31,7 @@ function forum_help($path, $arg) { case 'admin/structure/forum/add/forum': return '

' . t('A forum holds related forum topics.') . '

'; case 'admin/structure/forum/settings': - return '

' . t('Adjust the display of your forum topics. Select the content types to use in forums on the forum vocabulary page.', array('@forum-vocabulary' => url('admin/structure/taxonomy/' . variable_get('forum_nav_vocabulary', 0) . '/edit'))) . '

'; + return '

' . t('Adjust the display of your forum topics. Organize the forums on the forum structure page.', array('@forum-structure' => url('admin/structure/forum'))) . '

'; } } -- cgit v1.2.3