forum_help

Versions
4.6 – 5
forum_help($section)
6 – 7
forum_help($path, $arg)

Implementation of hook_help().

Code

modules/forum.module, line 11

<?php
function forum_help($section) {
  switch ($section) {
    case 'admin/forum':
      return t('<p>This is a list of existing containers and forums that you can edit. Containers hold forums and, in turn, forums hold threaded discussions. Both containers and forums can be placed inside other containers and forums. By planning the structure of your containers and forums well, you make it easier for users to find a topic area of interest to them.</p>');
    case 'admin/forum/add/container':
      return t('<p>Containers help you organize your forums. The job of a container is to hold, or contain, other forums that are related. For example, a container named "Food" might hold two forums named "Fruit" and "Vegetables". Containers are usually placed at the top (root) level of your forum but you can also place a container within another container or forum.</p>');
    case 'admin/forum/add/forum':
      return t('<p>A forum holds threaded topic discussions that are related. For example, a forum named "Fruit" might contain topic discussions titled "Apples" and "Bananas". You can place a forum into a container, another forum, or at the top (root) level of your forum.</p>');
    case 'admin/modules#description':
      return t('Enables threaded discussions about general topics.');
    case 'admin/forum/configure':
      return t('This is where you can configure system-wide options for how your forums act and display.');
    case 'node/add#forum':
      return t('A forum is a threaded discussion, enabling users to communicate about a particular topic.');
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.