⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 module_backup.php

📁 ATutor是一个学习管理系统(LCMS/LMS), 为教师和学生建立一个网络教学平台。
💻 PHP
字号:
<?php

$sql = array();

$sql['tests'] = 'SELECT test_id, title, format, start_date, end_date, randomize_order, num_questions, instructions, content_id, result_release, random, difficulty, num_takes, anonymous, out_of, guests FROM '.TABLE_PREFIX.'tests WHERE course_id=? ORDER BY test_id ASC';

$sql['tests_questions_categories'] = 'SELECT category_id, title FROM '.TABLE_PREFIX.'tests_questions_categories WHERE course_id=?';

$sql['tests_questions'] = 'SELECT question_id, category_id, type, feedback, question, choice_0, choice_1, choice_2, choice_3, choice_4, choice_5, choice_6, choice_7, choice_8, choice_9, answer_0, answer_1, answer_2, answer_3, answer_4, answer_5, answer_6, answer_7, answer_8, answer_9, option_0, option_1, option_2, option_3, option_4, option_5, option_6, option_7, option_8, option_9, properties, content_id FROM '.TABLE_PREFIX.'tests_questions WHERE course_id=?';

$sql['tests_questions_assoc'] = 'SELECT TQ.test_id, question_id, weight, ordering, required FROM '.TABLE_PREFIX.'tests_questions_assoc TQ, '.TABLE_PREFIX.'tests T WHERE T.course_id=? AND T.test_id=TQ.test_id ORDER BY TQ.test_id';

function tests_convert($row, $course_id, $table_id_map, $version) {
	$new_row = array();
	$new_row[0]  = $row[0];
	$new_row[1]  = $course_id;
	$new_row[2]  = $row[1];
	$new_row[3]  = $row[2];
	$new_row[4]  = $row[3];
	$new_row[5]  = $row[4];
	$new_row[6]  = $row[5];
	$new_row[7]  = $row[6];
	$new_row[8]  = $row[7];
	$new_row[9]  = 0;
	$new_row[10] = $row[9]  ? $row[9]  : 0;
	$new_row[11] = $row[10] ? $row[10] : 0;
	$new_row[12] = $row[11] ? $row[11] : 0;
	$new_row[13] = $row[12] ? $row[12] : 0;
	$new_row[14] = $row[13] ? $row[13] : 0;
	$new_row[15] = $row[14] ? $row[14] : 0;
	$new_row[16] = $row[15] ? $row[15] : 0; // `guests` added 1.5.4

	return $new_row;
}

function tests_questions_categories_convert($row, $course_id, $table_id_map, $version) {
	$new_row = array();
	$new_row[0] = $row[0];
	$new_row[1] = $course_id;
	$new_row[2] = $row[1];

	return $new_row;
}

function tests_questions_convert($row, $course_id, $table_id_map, $version) {
	$new_row = array();
	$new_row[0]  = $row[0]; // question_id
	$new_row[1]  = $table_id_map['tests_questions_categories'][$row[1]]; // category_id
	$new_row[2]  = $course_id; // course_id, obviously
	$new_row[3]  = $row[2];    // type
	$new_row[4]  = $row[3];    // feedback
	$new_row[5]  = $row[4];    // question
	$new_row[6]  = $row[5];    // choice_0
	$new_row[7]  = $row[6];    // choice_1
	$new_row[8]  = $row[7];    // choice_2
	$new_row[9]  = $row[8];    // choice_3
	$new_row[10] = $row[9];    // choice_4
	$new_row[11] = $row[10];   // choice_5
	$new_row[12] = $row[11];   // choice_6
	$new_row[13] = $row[12];   // choice_7
	$new_row[14] = $row[13];   // choice_8
	$new_row[15] = $row[14];   // choice_9
	$new_row[16] = $row[15];   // answer_0
	$new_row[17] = $row[16];   // answer_1
	$new_row[18] = $row[17];   // answer_2
	$new_row[19] = $row[18];   // answer_3
	$new_row[20] = $row[19];   // answer_4
	$new_row[21] = $row[20];   // answer_5
	$new_row[22] = $row[21];   // answer_6
	$new_row[23] = $row[22];   // answer_7
	$new_row[24] = $row[23];   // answer_8
	$new_row[25] = $row[24];   // answer_9
	if (version_compare($version, '1.5.4', '<')) {
		// option_[0-9] were added in 1.5.4 before properties
		$new_row[26] = '';       // option_0
		$new_row[27] = '';       // option_1
		$new_row[28] = '';       // option_2
		$new_row[29] = '';       // option_3
		$new_row[30] = '';       // option_4
		$new_row[31] = '';       // option_5
		$new_row[32] = '';       // option_6
		$new_row[33] = '';       // option_7
		$new_row[34] = '';       // option_8
		$new_row[35] = '';       // option_9
		$new_row[36] = $row[25]; // properties
		$new_row[37] = $row[26]; // content_id
	} else {
		$new_row[26] = $row[25]; // option_0
		$new_row[27] = $row[26]; // option_1
		$new_row[28] = $row[27]; // option_2
		$new_row[29] = $row[28]; // option_3
		$new_row[30] = $row[29]; // option_4
		$new_row[31] = $row[30]; // option_5
		$new_row[32] = $row[31]; // option_6
		$new_row[33] = $row[32]; // option_7
		$new_row[34] = $row[33]; // option_8
		$new_row[35] = $row[34]; // option_9
		$new_row[36] = $row[35]; // properties
		$new_row[37] = $row[36]; // content_id
	}

	return $new_row;
}

function tests_questions_assoc_convert($row, $course_id, $table_id_map, $version) {
	$new_row = array();
	$new_row[0] = $table_id_map['tests'][$row[0]];
	$new_row[1] = $table_id_map['tests_questions'][$row[1]];
	$new_row[2] = $row[2];
	$new_row[3] = $row[3];
	$new_row[4] = $row[4];

	return $new_row;
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -