You are here

function matching_menu in Quiz 6.6

Same name and namespace in other branches
  1. 6.3 question_types/matching/matching.module \matching_menu()
  2. 6.5 question_types/matching/matching.module \matching_menu()

Implementation of hook_menu().

File

question_types/matching/matching.module, line 38
Matching question type for quiz module

Code

function matching_menu() {
  $items['admin/quiz/matching'] = array(
    'title' => t('Matching configuration'),
    'description' => t('Configure Matching questions for users.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'matching_admin_settings_form',
    ),
    'access arguments' => array(
      QUIZ_PERM_ADMIN_CONFIG,
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}