License * - http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * * @param $oldversion Number of the old version. */ require_once ($CFG->dirroot . '/mod/iassign/locallib.php'); /// // Code run after the mod_iassign module database tables have been created. // Disables this plugin for new installs // @return bool function xmldb_iassign_install () { // function xmldb_iassign_upgrade ($oldversion) global $CFG, $DB, $USER; $dbman = $DB->get_manager(); // iLM availables: iFractions; iGeom; iGraf; iHanoi; iVProg; Risko // HTML+JS iLM : iFractions; iHanoi; iVProg // Java iLM : iGeom; iGraf $table = new xmldb_table('iassign_submission'); $field = new xmldb_field('previous_grade', XMLDB_TYPE_FLOAT, null, null, null, null, null); if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } $records = array( array_combine( // iVProg 1.0.20200121 - HTML5 array('name', 'url', 'version', 'type', 'description', 'extension', 'file_jar', 'file_class', 'width', 'height', 'enable', 'evaluate', 'reevaluate', 'timemodified', 'author', 'timecreated'), array('iVProg', 'http://www.usp.br/line/ivprog/', '1.0.20200121', 'HTML5', '{"en":"Visual Interactive Programming on the Internet (HTML)","pt_br":"Programação visual interativa na Internet"}', 'ivph', 'ilm/iVProg/1.0.20190717/ivprog/', 'index.html', 800, 600, 1, 1, 1, time(), $USER->id, time())), array_combine( // iHanoi 1.0.20200803 - HTML5 array('name', 'url', 'version', 'type', 'description', 'extension', 'file_jar', 'file_class', 'width', 'height', 'enable', 'evaluate', 'reevaluate', 'timemodified', 'author', 'timecreated'), array('iHanoi', 'http://www.matematica.br/ihanoi', '1.0.20200803', 'HTML5', '{"en":"interactive Tower os Hanoi (by LInE)", "pt_br":"Torres de Hanói (do LInE)"}', 'ihn', 'ilm/iHanoi/1.0.20200803/ihanoi/', 'index.html', 1100, 500, 1, 1, 1, time(), $USER->id, time())), array_combine( // iFractions 0.1.20200221 - HTML5 array('name', 'url', 'version', 'type', 'description', 'extension', 'file_jar', 'file_class', 'width', 'height', 'enable', 'evaluate', 'reevaluate', 'timemodified', 'author', 'timecreated'), array('iFractions', 'http://www.matematica.br/ifractions', '0.1.20200221', 'HTML5', '{"en":"Interactive Fractions game","pt_br":"Jogo interativa de frações"}', 'frc', 'ilm/iFractions/0.1.20200221/ifractions/', 'index.html', 1000, 600, 1, 1, 0, time(), $USER->id, time())), array_combine( // iGeom 5.9.22 - Java array('name', 'url', 'version', 'type', 'description', 'extension', 'file_jar', 'file_class', 'width', 'height', 'enable', 'evaluate', 'reevaluate', 'timemodified', 'author', 'timecreated'), array('iGeom', 'http://www.matematica.br/igeom', '5.9.22', 'Java', '{"en":"Interactive Geometry on the Internet","pt_br":"Geometria Interativa na Internet"}', 'geo', 'ilm/iGeom/5.9.22/iGeom.jar', 'IGeomApplet.class', 800, 600, 1, 1, 0, time(), $USER->id, time())), array_combine( // Risco 2.2.23 - Java array('name', 'url', 'version', 'type', 'description', 'extension', 'file_jar', 'file_class', 'width', 'height', 'enable', 'evaluate', 'reevaluate', 'timemodified', 'author', 'timecreated'), array('Risko', 'http://risko.pcc.usp.br/', '2.2.23', 'Java', '{"en":"Technical drawing with triangle and ruler","pt_br":"Desenho Geomẽtrico com esquadro"}', 'rsk', 'ilm/Risko/2.2.23/Risko.jar', 'RiskoApplet.class', 800, 600, 1, 0, 0, time(), $USER->id, time())) ); $strInstalled_iLM = ""; $error = 0; foreach ($records as $record) { $newentry = new stdClass(); $newentry->name = $record['name']; $newentry->version = $record['version']; $newentry->type = $record['type']; $newentry->url = $record['url']; $newentry->description = $record['description']; $newentry->extension = $record['extension']; $newentry->file_jar = $record['file_jar']; $newentry->file_class = $record['file_class']; $newentry->width = $record['width']; $newentry->height = $record['height']; $newentry->enable = $record['enable']; $newentry->evaluate = $record['evaluate']; $newentry->reevaluate = $record['reevaluate']; $newentry->timemodified = time(); $newentry->author = $USER->id; $newentry->timecreated = time(); try { $DB->insert_record("iassign_ilm", $newentry, false); $strInstalled_iLM += "\n" . '
  • ' . $record['name'] + ';' . $record['type'] . ';' . $record['version'] . '
  • ' . "\n"; } catch (Exception $e) { print "Error install.php: " . $e->getMessage() . "
    "; $error = 1; } } if ($error == 1) { // $string['error_security_no_userid'] = 'Internal error: must be informed the user identification. Inform the Administrator.'; print '' + "\n"; } else { // $string['cliinstallfinished'] = 'Installation completed successfully.'; print '