Skip to content

Commit

Permalink
MDL-28542 SCORM Course format should use skipview setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarsden committed Jul 31, 2011
1 parent ca3e8e9 commit aab23f9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions mod/scorm/locallib.php
Expand Up @@ -678,6 +678,10 @@ function scorm_course_format_display($user, $course) {
if (! $cm = get_coursemodule_from_instance('scorm', $scorm->id, $course->id)) {
print_error('invalidcoursemodule');
}
$contextmodule = get_context_instance(CONTEXT_MODULE, $cm->id);
if ((has_capability('mod/scorm:skipview', $contextmodule)) && scorm_simple_play($scorm, $user, $contextmodule)) {
exit;
}
$colspan = '';
$headertext = '<table width="100%"><tr><td class="title">'.get_string('name').': <b>'.format_string($scorm->name).'</b>';
if (has_capability('moodle/course:manageactivities', $context)) {
Expand Down Expand Up @@ -832,12 +836,11 @@ function scorm_simple_play($scorm, $user, $context) {
}
if ($scorm->skipview >= 1) {
$sco = current($scoes);
if (scorm_get_tracks($sco->id, $user->id) === false) {
header('Location: player.php?a='.$scorm->id.'&scoid='.$sco->id.'&currentorg='.$orgidentifier);
$result = true;
} else if ($scorm->skipview == 2) {
header('Location: player.php?a='.$scorm->id.'&scoid='.$sco->id.'&currentorg='.$orgidentifier);
$result = true;
$url = new moodle_url('/mod/scorm/player.php', array('a' => $scorm->id,
'currentorg'=>$orgidentifier,
'scoid'=>$sco->id));
if ($scorm->skipview == 2 || scorm_get_tracks($sco->id, $user->id) === false) {
redirect($url);
}
}
}
Expand Down

0 comments on commit aab23f9

Please sign in to comment.