You are here

function answers_help in Answers 7.3

Same name and namespace in other branches
  1. 5.2 answers.module \answers_help()
  2. 6.2 answers.module \answers_help()
  3. 6 answers.module \answers_help()
  4. 7 answers.module \answers_help()
  5. 7.2 answers.module \answers_help()

Implements hook_help().

File

./answers.module, line 34

Code

function answers_help($path, $arg) {
  switch ($path) {
    case "admin/help#modulename":
      return '<p>' . t('Enables users to ask questions and for other users to answer them.') . '</p>';
  }
}