You are here

function questions_import_help in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/questions_import/questions_import.module \questions_import_help()
  2. 6.3 includes/questions_import/questions_import.module \questions_import_help()

Implementation of hook_help().

File

includes/questions_import/questions_import.module, line 14
Questions Import

Code

function questions_import_help($path, $arg) {
  if ($path == 'admin/help#questions_import') {
    return '<p>' . t('This module allows you to import questions to quiz node in CSV, QTI XML, Moodle Aiken format.') . '</p>';
  }
}