You are here

function quiz_drag_drop_help in Quiz Drag Drop 7

Implements hook_help().

File

./quiz_drag_drop.module, line 20
The main file for quiz_drag_drop.

Code

function quiz_drag_drop_help($path, $args) {
  if ($path == 'admin/help#quiz_drag_drop') {
    return t("\n      <p>This module provides a drag drop question type for Quiz.</p>\n      <p>\n      <em>This module allows you to upload images for preparing drag drop type of questions.\n      Later on images will get displayed with placeholders. User need to drag images to the correct placeholder to get points.</em></p>\n    ");
  }
}