function _quiz_help in Quiz 6.4
Same name and namespace in other branches
- 8.4 quiz.help.inc \_quiz_help()
- 6.6 quiz.help.inc \_quiz_help()
- 6.2 quiz.help.inc \_quiz_help()
- 6.3 quiz.help.inc \_quiz_help()
- 6.5 quiz.help.inc \_quiz_help()
- 7.6 quiz.help.inc \_quiz_help()
- 7 quiz.help.inc \_quiz_help()
- 7.4 quiz.help.inc \_quiz_help()
- 7.5 quiz.help.inc \_quiz_help()
Handle help calls.
See also
1 call to _quiz_help()
- quiz_help in ./
quiz.module - Implementation of hook_help().
File
- ./
quiz.help.inc, line 13 - Help text.
Code
function _quiz_help($path, $arg) {
switch ($path) {
case 'admin/help#quiz':
return t('
<p>The quiz module allows users to administer a quiz, as a sequence of questions, and track the answers given. It allows for the creation of questions (and their answers), and organizes these questions into a quiz. Its target audience includes educational institutions, online training programs, employers, and people who just want to add a fun activity for their visitors to their Drupal site.</p>
<p>The quiz module has a plethora of permission options. Unless you take care setting your permissions, the quiz module might not do everything you want it to do.</p>
<p>For more information about quiz, and resources on how to use quiz, see the <a href="http://drupal.org/project/quiz">Quiz project website</a></p>
', array(
'@quiz' => QUIZ_NAME,
'@admin-access' => url('admin/user/permissions'),
'@admin-modules' => url('admin/build/modules'),
'@admin-taxonomy' => url('admin/content/taxonomy'),
'@create-content' => url('node/add'),
'@multichoice' => url('node/add/multichoice'),
'@create-quiz' => url('node/add/quiz'),
));
case 'node/add#quiz':
return t('A collection of questions designed to create interactive tests');
default:
break;
}
}