mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 04:01:40 +01:00
NEW: Display Left Menu IF. The left menu will only display if the student has a grade better than the one set in the lesson settings. This is nice to allow only students who are reviewing the lesson to have access to the left menu. BUG FIX: In Windows IE, the content was being aligned center. Now, the content is explicitly aligned to left as default. BUG FIX: High Scores variable was not spelled correctly at the End of Lesson. ADDED: Div tags around branch tables. This will allow users to choose to display them or not or move them around CHANGED: converted more of the links to the stylized button. Also, removed a lot of forms and javascript and replaced it with links with the variables in the href. CHANGED: the slide show styles have been moved to the style sheet. CHANGED: removed the CDC comments Other minor changes have been made to the code as well.
214 lines
12 KiB
PHP
214 lines
12 KiB
PHP
<?PHP
|
|
|
|
function lesson_upgrade($oldversion) {
|
|
/// This function does anything necessary to upgrade
|
|
/// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
if ($oldversion < 2004021600) {
|
|
|
|
delete_records("log_display", "module", "lesson");
|
|
|
|
modify_database ("", "INSERT INTO prefix_log_display VALUES ('lesson', 'start', 'lesson', 'name');");
|
|
modify_database ("", "INSERT INTO prefix_log_display VALUES ('lesson', 'end', 'lesson', 'name');");
|
|
modify_database ("", "INSERT INTO prefix_log_display VALUES ('lesson', 'view', 'lesson_pages', 'title');");
|
|
|
|
}
|
|
|
|
if ($oldversion < 2004022200) {
|
|
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `maxattempts` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER maxanswers");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `nextpagedefault` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER maxattempts");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `maxpages` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER nextpagedefault");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_pages` ADD `qtype` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER lessonid");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_pages` ADD `qoption` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER qtype");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_answers` ADD `grade` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER jumpto");
|
|
|
|
}
|
|
|
|
if ($oldversion < 2004032000) { // Upgrade some old beta lessons
|
|
execute_sql(" UPDATE `{$CFG->prefix}lesson_pages` SET qtype = 3 WHERE qtype = 0");
|
|
}
|
|
|
|
if ($oldversion < 2004032400) {
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `usemaxgrade` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER grade");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `minquestions` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER nextpagedefault");
|
|
}
|
|
|
|
if ($oldversion < 2004032700) {
|
|
table_column("lesson_answers", "", "flags", "INTEGER", "4", "UNSIGNED", "0", "NOT NULL", "grade");
|
|
}
|
|
|
|
if ($oldversion < 2004060501) {
|
|
// matching questions need 2 records for responses and the
|
|
// 2 records must appear before the old ones. So, delete the old ones,
|
|
// create the 2 needed, then re-insert the old ones for each matching question.
|
|
if ($matchingquestions = get_records('lesson_pages', 'qtype', 5)) { // get our matching questions
|
|
foreach ($matchingquestions as $matchingquestion) {
|
|
if ($answers = get_records('lesson_answers', 'pageid', $matchingquestion->id)) { // get answers
|
|
if (delete_records('lesson_answers', 'pageid', $matchingquestion->id)) { // delete them
|
|
$time = time();
|
|
// make our 2 response answers
|
|
$newanswer->lessonid = $matchingquestion->lessonid;
|
|
$newanswer->pageid = $matchingquestion->id;
|
|
$newanswer->timecreated = $time;
|
|
$newanswer->timemodified = 0;
|
|
insert_record('lesson_answers', $newanswer);
|
|
insert_record('lesson_answers', $newanswer);
|
|
// insert our old answers
|
|
foreach ($answers as $answer) {
|
|
$answer->timecreated = $time;
|
|
$answer->timemodified = 0;
|
|
insert_record('lesson_answers', $answer);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($oldversion < 2004072100) {
|
|
execute_sql(" create table ".$CFG->prefix."lesson_high_scores
|
|
( id int(10) unsigned not null auto_increment,
|
|
lessonid int(10) unsigned not null,
|
|
userid int(10) unsigned not null,
|
|
gradeid int(10) unsigned not null,
|
|
nickname varchar(5) not null,
|
|
PRIMARY KEY (`id`)
|
|
)");
|
|
|
|
execute_sql(" create table ".$CFG->prefix."lesson_branch
|
|
( id int(10) unsigned not null auto_increment,
|
|
lessonid int(10) unsigned not null,
|
|
userid int(10) unsigned not null,
|
|
pageid int(10) unsigned not null,
|
|
retry int(10) unsigned not null,
|
|
flag tinyint(3) unsigned not null,
|
|
timeseen int(10) unsigned not null,
|
|
PRIMARY KEY (`id`)
|
|
)");
|
|
|
|
|
|
execute_sql(" create table ".$CFG->prefix."lesson_timer
|
|
( id int(10) unsigned not null auto_increment,
|
|
lessonid int(10) unsigned not null,
|
|
userid int(10) unsigned not null,
|
|
starttime int(10) unsigned not null,
|
|
lessontime int(10) unsigned not null,
|
|
PRIMARY KEY (`id`)
|
|
)");
|
|
|
|
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_pages` ADD `layout` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' AFTER qoption");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_pages` ADD `display` TINYINT(3) UNSIGNED NOT NULL DEFAULT '1' AFTER layout");
|
|
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_answers` ADD `score` INT(10) NOT NULL DEFAULT '0' AFTER grade");
|
|
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `usepassword` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER name");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `password` VARCHAR(32) NOT NULL DEFAULT '' AFTER usepassword");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `custom` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER grade");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `ongoing` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER custom");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `timed` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER maxpages");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `maxtime` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER timed");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `tree` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER retake");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `slideshow` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER tree");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `width` INT(10) UNSIGNED NOT NULL DEFAULT '640' AFTER slideshow");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `height` INT(10) UNSIGNED NOT NULL DEFAULT '480' AFTER width");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `bgcolor` CHAR(7) NOT NULL DEFAULT '#FFFFFF' AFTER height");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `displayleft` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER bgcolor");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `highscores` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER displayleft");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `maxhighscores` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER highscores");
|
|
|
|
}
|
|
|
|
if ($oldversion < 2004081100) {
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `practice` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER name");
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `review` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER maxattempts");
|
|
}
|
|
|
|
if ($oldversion < 2004081700) {
|
|
execute_sql("CREATE TABLE `{$CFG->prefix}lesson_default`
|
|
( `id` int(10) unsigned NOT NULL auto_increment,
|
|
`course` int(10) unsigned NOT NULL default '0',
|
|
`practice` tinyint(3) unsigned NOT NULL default '0',
|
|
`password` varchar(32) NOT NULL default '',
|
|
`usepassword` int(3) unsigned NOT NULL default '0',
|
|
`grade` tinyint(3) NOT NULL default '0',
|
|
`custom` int(3) unsigned NOT NULL default '0',
|
|
`ongoing` int(3) unsigned NOT NULL default '0',
|
|
`usemaxgrade` tinyint(3) unsigned NOT NULL default '0',
|
|
`maxanswers` int(3) unsigned NOT NULL default '4',
|
|
`maxattempts` int(3) unsigned NOT NULL default '5',
|
|
`review` tinyint(3) unsigned NOT NULL default '0',
|
|
`nextpagedefault` int(3) unsigned NOT NULL default '0',
|
|
`minquestions` tinyint(3) unsigned NOT NULL default '0',
|
|
`maxpages` int(3) unsigned NOT NULL default '0',
|
|
`timed` int(3) unsigned NOT NULL default '0',
|
|
`maxtime` int(10) unsigned NOT NULL default '0',
|
|
`retake` int(3) unsigned NOT NULL default '1',
|
|
`tree` int(3) unsigned NOT NULL default '0',
|
|
`slideshow` int(3) unsigned NOT NULL default '0',
|
|
`width` int(10) unsigned NOT NULL default '640',
|
|
`height` int(10) unsigned NOT NULL default '480',
|
|
`bgcolor` varchar(7) default '#FFFFFF',
|
|
`displayleft` int(3) unsigned NOT NULL default '0',
|
|
`highscores` int(3) unsigned NOT NULL default '0',
|
|
`maxhighscores` int(10) NOT NULL default '0',
|
|
PRIMARY KEY (`id`)
|
|
) COMMENT = 'Defines lesson_default'");
|
|
}
|
|
|
|
if ($oldversion < 2004100400) {
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_attempts` ADD `useranswer` text NOT NULL AFTER correct");
|
|
}
|
|
|
|
if ($oldversion < 2004100700) {
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson` ADD `modattempts` tinyint(3) unsigned NOT NULL default '0' AFTER practice");
|
|
}
|
|
|
|
if ($oldversion < 2004102600) {
|
|
execute_sql(" ALTER TABLE `{$CFG->prefix}lesson_default` ADD `modattempts` tinyint(3) unsigned NOT NULL default '0' AFTER practice");
|
|
}
|
|
|
|
if ($oldversion < 2004111200) {
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson DROP INDEX course;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_answers DROP INDEX lessonid;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_attempts DROP INDEX lessonid;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_attempts DROP INDEX pageid;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_grades DROP INDEX lessonid;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_grades DROP INDEX userid;",false);
|
|
execute_sql("ALTER TABLE {$CFG->prefix}lesson_pages DROP INDEX lessonid;",false);
|
|
|
|
modify_database('','ALTER TABLE prefix_lesson ADD INDEX course (course);');
|
|
modify_database('','ALTER TABLE prefix_lesson_answers ADD INDEX lessonid (lessonid);');
|
|
modify_database('','ALTER TABLE prefix_lesson_attempts ADD INDEX lessonid (lessonid);');
|
|
modify_database('','ALTER TABLE prefix_lesson_attempts ADD INDEX pageid (pageid);');
|
|
modify_database('','ALTER TABLE prefix_lesson_grades ADD INDEX lessonid (lessonid);');
|
|
modify_database('','ALTER TABLE prefix_lesson_grades ADD INDEX userid (userid);');
|
|
modify_database('','ALTER TABLE prefix_lesson_pages ADD INDEX lessonid (lessonid);');
|
|
}
|
|
|
|
if ($oldversion < 2005060900) {
|
|
table_column('lesson_grades', 'grade', 'grade', 'float', '', 'unsigned', '0', 'not null');
|
|
}
|
|
|
|
if ($oldversion < 2005061500) {
|
|
table_column('lesson', '', 'mediafile', 'varchar', '255', '', '', 'not null', 'tree');
|
|
}
|
|
|
|
if ($oldversion < 2005063000) {
|
|
table_column('lesson', '', 'dependency', 'int', '10', 'unsigned', '0', 'not null', 'usepassword');
|
|
table_column('lesson', '', 'conditions', 'text', '', '', '', 'not null', 'dependency');
|
|
}
|
|
|
|
if ($oldversion < 2005101900) {
|
|
table_column('lesson', '', 'progressbar', 'tinyint', '3', 'unsigned', '0', 'not null', 'displayleft');
|
|
table_column('lesson', '', 'displayleftif', 'int', '3', 'unsigned', '0', 'not null', 'displayleft');
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|