From f903314be60ca814081d787c1ec397b06b1ca539 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sun, 6 Dec 2009 17:36:51 +0000 Subject: #632996 follow-up by marvil07, jhodgdon, and heather: Add example about containers vs. forums to Forum help text. --- modules/forum/forum.module | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'modules') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index aeeb01713..5c586067c 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -12,12 +12,27 @@ function forum_help($path, $arg) { switch ($path) { case 'admin/help#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 = ''; + $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. In a forum, users post topics and threads in nested hierarchies, allowing discussions to be categorized and grouped. The forum hierarchy consists of:') . '

'; + $output .= ''; + $output .= '

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

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; + $output .= '
' . t('Setting up forum structure') . '
'; + $output .= '
' . t('Visit the Forums page to set up containers and forums to hold your discussion topics.', array('@forums' => url('admin/structure/forum'))) . '
'; + $output .= '
' . t('Starting a discussion') . '
'; + $output .= '
' . t('The Forum topic link on the Add new content page creates the first post of a new threaded discussion, or thread.', array('@create-topic' => url('node/add/forum'), '@content-add' => url('node/add'))) . '
'; $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('Enabling the Forum module provides a default Forums menu item in the navigation menu that links to the 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') . '
'; -- cgit v1.2.3