You are here

function quiz_dashboard_help in Quiz 6.6

@function Implementation of hook_help().

File

includes/quiz_dashboard/quiz_dashboard.module, line 24
Quiz Dashboard

Code

function quiz_dashboard_help($path, $arg) {
  if ($path == 'admin/help#quiz_dashboard') {
    return '<p>' . t('Module creates a report to analyse and compare the results of quiz attendees. The reports will be displayed visually using goolge chart API.') . '</p>';
  }
}