You are here

quiz.help.inc in Quiz 8.4

Help text.

quiz help function

File

quiz.help.inc
View source
<?php

/**
 * Help text.
 *
 * @file
 * quiz help function
 */

/**
 * Handle help calls.
 * @see hook_help()
 */
function _quiz_help($path, $arg) {
  switch ($path) {
    case 'admin/help#quiz':
      $text = '<p>';
      $text .= t('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.');
      $text .= '</p>';
      $text .= '<p>';
      $text .= t('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.');
      $text .= '</p>';
      $text .= '<p>';
      $text .= t('For more information about quiz, and resources on how to use quiz, see the <a href="@link"> Quiz project website </a>', array(
        '@link' => 'http://drupal.org/project/quiz',
      ));
      $text .= '</p>';
      return $text;
    case 'node/add#quiz':
      return t('A collection of questions designed to create interactive tests');
    default:
      break;
  }
}

Functions

Namesort descending Description
_quiz_help Handle help calls.