mirror of
https://github.com/moodle/moodle.git
synced 2025-02-14 04:45:29 +01:00
223 lines
9.0 KiB
PHP
Executable File
223 lines
9.0 KiB
PHP
Executable File
<?PHP // $Id$
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
require_login();
|
|
if ($form = data_submitted($destination)) {
|
|
|
|
if (! $course = get_record("course", "id", $form->course)) {
|
|
error("This course doesn't exist");
|
|
}
|
|
|
|
require_login($course->id);
|
|
|
|
if (!isteacher($course->id)) {
|
|
error("You can't modify this course!");
|
|
}
|
|
|
|
$strediting = get_string("validateascorm", "scorm");
|
|
$strname = get_string("name");
|
|
|
|
print_header("$course->shortname: $strediting", "$course->shortname: $strediting",
|
|
"<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> -> $strediting");
|
|
|
|
if (!$form->name or !$form->reference or !$form->summary) {
|
|
error(get_string("filloutallfields"), $_SERVER["HTTP_REFERER"]);
|
|
}
|
|
|
|
//
|
|
// Create a temporary directory to unzip package and validate imsmanifest
|
|
//
|
|
|
|
$coursedir = "$CFG->dataroot/$course->id";
|
|
|
|
if ($scormdir = make_upload_directory("$course->id/$CFG->moddata/scorm")) {
|
|
if ($tempdir = scorm_datadir($scormdir, $form->datadir)) {
|
|
copy ("$coursedir/$form->reference", $tempdir."/".basename($form->reference));
|
|
if (empty($CFG->unzip)) { // Use built-in php-based unzip function
|
|
include_once($CFG->dirroot.'/lib/pclzip/pclzip.lib.php');
|
|
$archive = new PclZip($tempdir."/".basename($form->reference));
|
|
if (!$list = $archive->extract($tempdir)) {
|
|
error($archive->errorInfo(true));
|
|
}
|
|
} else {
|
|
$command = "cd $tempdir; $CFG->unzip -o ".basename($form->reference)." 2>&1";
|
|
exec($command);
|
|
}
|
|
$result = scorm_validate($tempdir."/imsmanifest.xml");
|
|
} else {
|
|
$result = "packagedir";
|
|
}
|
|
} else {
|
|
$result = "datadir";
|
|
}
|
|
|
|
if ($result != "regular") {
|
|
//
|
|
// Delete files and temporary directory
|
|
//
|
|
if (is_dir($tempdir))
|
|
scorm_delete_files($tempdir);
|
|
} else {
|
|
//
|
|
// Delete package file
|
|
//
|
|
unlink ($tempdir."/".basename($form->reference));
|
|
if ($form->mode == "update") {
|
|
$fp = fopen($coursedir."/".$form->reference,"r");
|
|
$fstat = fstat($fp);
|
|
fclose($fp);
|
|
if (get_field("scorm","timemodified","id",$form->instance) < $fstat["mtime"])
|
|
$form->launch = 0;
|
|
}
|
|
}
|
|
//
|
|
// Print validation result
|
|
//
|
|
print_simple_box_start("center", "", "$THEME->cellheading");
|
|
echo "<table cellpadding=\"5\" align=\"center\">\n";
|
|
echo " <tr><td align=\"right\" nowrap><p><b>$strname:</b></p></td><td><p>$form->name</p></a></td></tr>\n";
|
|
echo " <tr><td align=\"right\" nowrap><p><b>".get_string("validation","scorm").":</b></p></td><td><p>".get_string($result,"scorm")."</p></a></td></tr>\n";
|
|
if (($form->mode == "update") && ($form->launch == 0) && (get_records("scorm_sco_users","scormid",$form->instance)))
|
|
echo " <tr><td align=\"center\" colspan=\"2\" nowrap><p><b>".get_string("trackingloose","scorm")."</b></p></td></tr>\n";
|
|
echo "</table>\n";
|
|
if ($result == "regular") {
|
|
if (empty($form->auto)) {
|
|
$form->auto = "";
|
|
}
|
|
echo "<form name=\"theform\" method=\"post\" action=\"$form->destination\">\n";
|
|
|
|
$form->popup = $CFG->scorm_popup;
|
|
$strnewwindow = get_string("newwindow", "scorm");
|
|
$strnewwindowopen = get_string("newwindowopen", "scorm");
|
|
foreach ($SCORM_WINDOW_OPTIONS as $optionname) {
|
|
$stringname = "str$optionname";
|
|
$$stringname = get_string("new$optionname", "scorm");
|
|
$window->$optionname = "";
|
|
$jsoption[] = "\"$optionname\"";
|
|
}
|
|
$alljsoptions = implode(",", $jsoption);
|
|
|
|
if ($form->instance) { // Re-editing
|
|
if ($form->popup == "") {
|
|
$newwindow = ""; // Disable the new window
|
|
} else {
|
|
$newwindow = "checked";
|
|
$rawoptions = explode(',', $form->popup);
|
|
foreach ($rawoptions as $rawoption) {
|
|
$option = explode('=', trim($rawoption));
|
|
if ((option != 'location') && (option != 'menubar') && (option != 'toolbar')) {
|
|
$optionname = $option[0];
|
|
$optionvalue = $option[1];
|
|
if ($optionname == "height" or $optionname == "width") {
|
|
$window->$optionname = $optionvalue;
|
|
} else if ($optionvalue) {
|
|
$window->$optionname = "checked";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
foreach ($SCORM_WINDOW_OPTIONS as $optionname) {
|
|
$defaultvalue = "scorm_popup$optionname";
|
|
$window->$optionname = $CFG->$defaultvalue;
|
|
}
|
|
$newwindow = $CFG->scorm_popup;
|
|
}
|
|
|
|
?>
|
|
<table cellpadding="5" align="center">
|
|
<tr valign=top>
|
|
<td align=right><p><b><?php print_string("autocontinue","scorm") ?>:</b></p></td>
|
|
<td>
|
|
<?php
|
|
$options[]=get_string("no");
|
|
$options[]=get_string("yes");
|
|
choose_from_menu ($options, "auto", $form->auto);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right" nowrap>
|
|
<p><b><?php p($strnewwindow) ?></b></p>
|
|
</td>
|
|
<td>
|
|
<script>
|
|
var subitems = [<?php echo $alljsoptions; ?>];
|
|
|
|
function autowindow() {
|
|
if (document.theform.newwindow.checked)
|
|
document.theform.auto.disabled=true;
|
|
else
|
|
document.theform.auto.disabled=false;
|
|
}
|
|
</script>
|
|
<input name="setnewwindow" type=hidden value=1>
|
|
<input name="newwindow" type=checkbox value=1 <?php p($newwindow) ?>
|
|
onclick="autowindow();return lockoptions('theform','newwindow', subitems);">
|
|
<?php p($strnewwindowopen) ?>
|
|
<ul>
|
|
<?php
|
|
foreach ($window as $name => $value) {
|
|
if ($name == "height" or $name == "width") {
|
|
continue;
|
|
}
|
|
echo "\t\t<input name=\"h$name\" type=hidden value=0>\n";
|
|
echo "\t\t<input name=\"$name\" type=checkbox value=1 ".$window->$name."> ";
|
|
$stringname = "str$name";
|
|
echo $$stringname."<br />\n";
|
|
}
|
|
?>
|
|
|
|
<input name="hwidth" type=hidden value=0>
|
|
<input name="width" type=text size=4 value="<?php p($window->width) ?>">
|
|
<?php p($strwidth) ?><br />
|
|
|
|
<input name="hheight" type=hidden value=0>
|
|
<input name="height" type=text size=4 value="<?php p($window->height) ?>">
|
|
<?php p($strheight) ?><br />
|
|
<?php
|
|
if (!$newwindow) {
|
|
echo "<script>";
|
|
echo "lockoptions('theform','newwindow', subitems);";
|
|
echo "</script>";
|
|
}
|
|
?>
|
|
</ul>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="reference" value="<?php p($form->reference) ?>">
|
|
<input type="hidden" name="datadir" value="<?php p(substr($tempdir,strlen($scormdir))) ?>">
|
|
<input type="hidden" name="summary" value="<?php p($form->summary) ?>">
|
|
<input type="hidden" name="name" value="<?php p($form->name) ?>">
|
|
<input type="hidden" name="launch" value="<?php p($form->launch) ?>">
|
|
<input type="hidden" name="course" value="<?php p($form->course) ?>">
|
|
<input type="hidden" name="coursemodule" value="<?php p($form->coursemodule) ?>">
|
|
<input type="hidden" name="section" value="<?php p($form->section) ?>">
|
|
<input type="hidden" name="module" value="<?php p($form->module) ?>">
|
|
<input type="hidden" name="modulename" value="<?php p($form->modulename) ?>">
|
|
<input type="hidden" name="instance" value="<?php p($form->instance) ?>">
|
|
<input type="hidden" name="mode" value="<?php p($form->mode) ?>">
|
|
<center>
|
|
<input type="submit" value="<?php print_string("savechanges") ?>">
|
|
<input type="submit" name=cancel value="<?php print_string("cancel") ?>">
|
|
</center>
|
|
</form>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<center>
|
|
<input type="button" value="<?php print_string("continue") ?>" onClick="document.location='<?php echo $CFG->wwwroot ?>/course/view.php?id=<?php echo $course->id ?>';">
|
|
</center>
|
|
<?php
|
|
}
|
|
print_simple_box_end();
|
|
print_footer($course);
|
|
} else {
|
|
error("This script was called incorrectly");
|
|
}
|
|
?>
|