You are here

function questions_export_help in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/questions_export/questions_export.module \questions_export_help()

Implementation of hook_help().

File

includes/questions_export/questions_export.module, line 14
Questions Export

Code

function questions_export_help($path, $arg) {
  if ($path == 'admin/help#questions_export') {
    return '<p>' . t('This module allows you to export Quiz questions to portable formats.') . '</p>';
  }
}