You are here

function qcollection_items in Quiz 6.6

Creates a form for quiz questions.

Handles the manage questions tab.

Parameters

$qid: ID of quiz to create

Return value

String containing the form.

1 string reference to 'qcollection_items'
qcollection_menu in includes/qcollection/qcollection.module
Implementation of qcollection_menu().

File

includes/qcollection/qcollection.inc, line 19

Code

function qcollection_items($node) {

  // Add JS
  $path = drupal_get_path('module', 'quiz') . '/quiz.admin.js';
  drupal_add_js($path, 'module');
  return drupal_get_form('qcollection_items_form', $node);
}