. // This page prints a particular instance of aicc/scorm package. require_once('../../config.php'); require_once($CFG->dirroot.'/mod/scorm/locallib.php'); require_once($CFG->libdir . '/completionlib.php'); $id = optional_param('cm', '', PARAM_INT); // Course Module ID, or $a = optional_param('a', '', PARAM_INT); // scorm ID $scoid = required_param('scoid', PARAM_INT); // sco ID $mode = optional_param('mode', 'normal', PARAM_ALPHA); // navigation mode $currentorg = optional_param('currentorg', '', PARAM_RAW); // selected organization $newattempt = optional_param('newattempt', 'off', PARAM_ALPHA); // the user request to start a new attempt. $displaymode = optional_param('display', '', PARAM_ALPHA); // IE 9 workaround for Flash bug: MDL-29213 // Note that it's not clear if appending the meta tag via $CFG->additionalhtmlhead // is correct at all, both because of the mechanism itself and because MS says // the tag must be used *before* including other stuff. See the issue for more info. // TODO: Once we implement some way to inject meta tags, change this to use it. MDL-30039 if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 9') !== false) { if (!isset($CFG->additionalhtmlhead)) { //check to make sure set first - that way we can use .= $CFG->additionalhtmlhead = ''; } $CFG->additionalhtmlhead .= ''; } if (!empty($id)) { if (! $cm = get_coursemodule_from_id('scorm', $id)) { print_error('invalidcoursemodule'); } if (! $course = $DB->get_record("course", array("id"=>$cm->course))) { print_error('coursemisconf'); } if (! $scorm = $DB->get_record("scorm", array("id"=>$cm->instance))) { print_error('invalidcoursemodule'); } } else if (!empty($a)) { if (! $scorm = $DB->get_record("scorm", array("id"=>$a))) { print_error('invalidcoursemodule'); } if (! $course = $DB->get_record("course", array("id"=>$scorm->course))) { print_error('coursemisconf'); } if (! $cm = get_coursemodule_from_instance("scorm", $scorm->id, $course->id)) { print_error('invalidcoursemodule'); } } else { print_error('missingparameter'); } // If new attempt is being triggered set normal mode and increment attempt number. $attempt = scorm_get_last_attempt($scorm->id, $USER->id); // Check mode is correct and set mode/attempt (uses pass by reference). scorm_check_mode($scorm, $newattempt, $attempt, $USER->id, $mode); $url = new moodle_url('/mod/scorm/player.php', array('scoid'=>$scoid, 'cm'=>$cm->id)); if ($mode !== 'normal') { $url->param('mode', $mode); } if ($currentorg !== '') { $url->param('currentorg', $currentorg); } if ($newattempt !== 'off') { $url->param('newattempt', $newattempt); } $PAGE->set_url($url); $forcejs = get_config('scorm', 'forcejavascript'); if (!empty($forcejs)) { $PAGE->add_body_class('forcejavascript'); } $collapsetocwinsize = get_config('scorm', 'collapsetocwinsize'); if (empty($collapsetocwinsize)) { // Set as default window size to collapse TOC. $collapsetocwinsize = 767; } else { $collapsetocwinsize = intval($collapsetocwinsize); } require_login($course, false, $cm); $strscorms = get_string('modulenameplural', 'scorm'); $strscorm = get_string('modulename', 'scorm'); $strpopup = get_string('popup', 'scorm'); $strexit = get_string('exitactivity', 'scorm'); $coursecontext = context_course::instance($course->id); if ($displaymode == 'popup') { $PAGE->set_pagelayout('popup'); } else { $shortname = format_string($course->shortname, true, array('context' => $coursecontext)); $pagetitle = strip_tags("$shortname: ".format_string($scorm->name)); $PAGE->set_title($pagetitle); $PAGE->set_heading($course->fullname); } if (!$cm->visible and !has_capability('moodle/course:viewhiddenactivities', $coursecontext)) { echo $OUTPUT->header(); notice(get_string("activityiscurrentlyhidden")); echo $OUTPUT->footer(); die; } // Check if scorm closed. $timenow = time(); if ($scorm->timeclose !=0) { if ($scorm->timeopen > $timenow) { echo $OUTPUT->header(); echo $OUTPUT->box(get_string("notopenyet", "scorm", userdate($scorm->timeopen)), "generalbox boxaligncenter"); echo $OUTPUT->footer(); die; } else if ($timenow > $scorm->timeclose) { echo $OUTPUT->header(); echo $OUTPUT->box(get_string("expired", "scorm", userdate($scorm->timeclose)), "generalbox boxaligncenter"); echo $OUTPUT->footer(); die; } } // TOC processing $scorm->version = strtolower(clean_param($scorm->version, PARAM_SAFEDIR)); // Just to be safe. if (!file_exists($CFG->dirroot.'/mod/scorm/datamodels/'.$scorm->version.'lib.php')) { $scorm->version = 'scorm_12'; } require_once($CFG->dirroot.'/mod/scorm/datamodels/'.$scorm->version.'lib.php'); $result = scorm_get_toc($USER, $scorm, $cm->id, TOCJSLINK, $currentorg, $scoid, $mode, $attempt, true, true); $sco = $result->sco; if ($scorm->lastattemptlock == 1 && $result->attemptleft == 0) { echo $OUTPUT->header(); echo $OUTPUT->notification(get_string('exceededmaxattempts', 'scorm')); echo $OUTPUT->footer(); exit; } $scoidstr = '&scoid='.$sco->id; $modestr = '&mode='.$mode; $SESSION->scorm = new stdClass(); $SESSION->scorm->scoid = $sco->id; $SESSION->scorm->scormstatus = 'Not Initialized'; $SESSION->scorm->scormmode = $mode; $SESSION->scorm->attempt = $attempt; // Mark module viewed. $completion = new completion_info($course); $completion->set_module_viewed($cm); // Print the page header. if (empty($scorm->popup) || $displaymode=='popup') { $exitlink = ''.$strexit.' '; $PAGE->set_button($exitlink); } $PAGE->requires->data_for_js('scormplayerdata', Array('launch' => false, 'currentorg' => '', 'sco' => 0, 'scorm' => 0, 'courseid' => $scorm->course, 'cwidth' => $scorm->width, 'cheight' => $scorm->height, 'popupoptions' => $scorm->options), true); $PAGE->requires->js('/mod/scorm/request.js', true); $PAGE->requires->js('/lib/cookies.js', true); echo $OUTPUT->header(); echo $OUTPUT->heading(format_string($scorm->name)); $PAGE->requires->string_for_js('navigation', 'scorm'); $PAGE->requires->string_for_js('toc', 'scorm'); $PAGE->requires->string_for_js('hide', 'moodle'); $PAGE->requires->string_for_js('show', 'moodle'); $PAGE->requires->string_for_js('popupsblocked', 'scorm'); $name = false; ?>
hidetoc == SCORM_TOC_POPUP or $mode=='browse' or $mode=='review') { echo '
'; echo $mode == 'browse' ? '
'.get_string('browsemode', 'scorm')."
\n" : ''; echo $mode == 'review' ? '
'.get_string('reviewmode', 'scorm')."
\n" : ''; if ($scorm->hidetoc == SCORM_TOC_POPUP) { echo '
'.$result->tocmenu.'
'; } echo '
'; } ?>
popup) || $displaymode == 'popup') { echo $result->toc; } else { //Added incase javascript popups are blocked we don't provide a direct link to the pop-up as JS communication can fail - the user must disable their pop-up blocker. $linkcourse = '' . get_string('finishscormlinkname', 'scorm') . ''; echo $OUTPUT->box(get_string('finishscorm', 'scorm', $linkcourse), 'generalbox', 'altfinishlink'); }?>
prerequisites) { if ($scorm->popup != 0 && $displaymode !=='popup') { // Clean the name for the window as IE is fussy $name = preg_replace("/[^A-Za-z0-9]/", "", $scorm->name); if (!$name) { $name = 'DefaultPlayerWindow'; } $name = 'scorm_'.$name; echo html_writer::script('', $CFG->wwwroot.'/mod/scorm/player.js'); $url = new moodle_url($PAGE->url, array('scoid' => $sco->id, 'display' => 'popup', 'mode' => $mode)); echo html_writer::script( js_writer::function_call('scorm_openpopup', Array($url->out(false), $name, $scorm->options, $scorm->width, $scorm->height))); ?> box(get_string('noprerequisites', 'scorm')); } ?>
id, $mode, $attempt); $adlnav = scorm_get_adlnav_json($scoes['scoes']); if (empty($scorm->popup) || $displaymode == 'popup') { if (!isset($result->toctitle)) { $result->toctitle = get_string('toc', 'scorm'); } $jsmodule = array( 'name' => 'mod_scorm', 'fullpath' => '/mod/scorm/module.js', 'requires' => array('json'), ); $scorm->nav = intval($scorm->nav); $PAGE->requires->js_init_call('M.mod_scorm.init', array($scorm->nav, $scorm->navpositionleft, $scorm->navpositiontop, $scorm->hidetoc, $collapsetocwinsize, $result->toctitle, $name, $sco->id, $adlnav), false, $jsmodule); } if (!empty($forcejs)) { echo $OUTPUT->box(get_string("forcejavascriptmessage", "scorm"), "generalbox boxaligncenter forcejavascriptmessage"); } echo $OUTPUT->footer();