You are here

function wikitools_help in Wikitools 6.2

Same name and namespace in other branches
  1. 5 wikitools.module \wikitools_help()
  2. 6 wikitools.module \wikitools_help()
  3. 7 wikitools.module \wikitools_help()

Implementation of hook_help().

File

./wikitools.module, line 11
A non-intrusive module to have some wiki-like behaviour.

Code

function wikitools_help($path, $arg) {
  switch ($path) {
    case 'admin/help#wikitools':
      $output = '<p>' . t('The wikitools module allows you to set several options for your content to get a more wiki-like behaviour.') . '</p>';
      return $output;
    case 'admin/settings/wikitools':

      //$output = '<p>'. t('TODO') .'</p>';
      return $output;
    case 'admin/content/wikitools':
      $output = '<p>' . t('Wikitools allows restrictions on node titles so that all new created nodes have guaranteed unique titles. Titles of nodes that were created before it was included in this option, however, are not guaranteed to have unique page titles. This page lists all nodes that have duplicate page titles, so that their titles may be changed to be unique.') . '</p>';
      return $output;
  }
}