You are here

function quiz_xmlend in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle/question/format/coursetestmanager/format.php \quiz_xmlend()
1 string reference to 'quiz_xmlend'
qformat_coursetestmanager::query_linux in includes/moodle/question/format/coursetestmanager/format.php

File

includes/moodle/question/format/coursetestmanager/format.php, line 511

Code

function quiz_xmlend($parser, $name) {
  global $result, $row, $col, $incolumn;
  $name = strtolower($name);
  switch ($name) {
    case "row":
      $row++;
      break;
    case "column":
      $incolumn = 0;
      $col++;
      break;
    case "error":
      break;
    case "result":
      break;
  }

  // switch
}