You are here

function quiz_help in Quiz 8.6

Same name and namespace in other branches
  1. 8.4 quiz.module \quiz_help()
  2. 8.5 quiz.module \quiz_help()
  3. 5.2 quiz.module \quiz_help()
  4. 5 quiz.module \quiz_help()
  5. 6.6 quiz.module \quiz_help()
  6. 6.2 quiz.module \quiz_help()
  7. 6.3 quiz.module \quiz_help()
  8. 6.4 quiz.module \quiz_help()
  9. 6.5 quiz.module \quiz_help()
  10. 7.6 quiz.module \quiz_help()
  11. 7 quiz.module \quiz_help()
  12. 7.4 quiz.module \quiz_help()
  13. 7.5 quiz.module \quiz_help()
  14. 6.x quiz.module \quiz_help()

Implements hook_help().

File

./quiz.module, line 40
Contains quiz.module

Code

function quiz_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.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>');
  }
}