mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
ebfff4e014
Merged from MOODLE_14_STABLE
72 lines
2.1 KiB
HTML
Executable File
72 lines
2.1 KiB
HTML
Executable File
<form method="post" action="module.php" name="form">
|
|
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>">
|
|
|
|
<table cellpadding="9" cellspacing="0" >
|
|
<tr valign="top">
|
|
<td align="right"><p>scorm_validate:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices[""] = get_string("none");
|
|
if (extension_loaded('domxml')) {
|
|
$choices["domxml"] = get_string("domxml","scorm");
|
|
}
|
|
if (version_compare(phpversion(),"5.0.0",">=")) {
|
|
$choices["php5"] = get_string("php5","scorm");
|
|
}
|
|
choose_from_menu ($choices, "scorm_validate", $CFG->scorm_validate, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("validationtype", "scorm") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right"><p>scorm_framesize:</td>
|
|
<td>
|
|
<input name="scorm_framesize" type="text" size="5" value="<?php p($CFG->scorm_framesize) ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string("configframesize", "scorm") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right"><p>scorm_popup:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices[""] = get_string("no");
|
|
$choices["checked"] = get_string("yes");
|
|
choose_from_menu ($choices, "scorm_popup", $CFG->scorm_popup, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configpopup", "scorm") ?>
|
|
</td>
|
|
</tr>
|
|
<?php foreach ($SCORM_WINDOW_OPTIONS as $optionname) {
|
|
$defaultvalue = "scorm_popup$optionname";
|
|
echo "<tr valign=\"top\">";
|
|
echo "<td align=\"right\"><p>$defaultvalue:</td>";
|
|
echo "<td>";
|
|
if ($optionname == "height" or $optionname == "width") {
|
|
echo "<input name=$defaultvalue type=\"text\" size=\"5\" value=\"".$CFG->$defaultvalue."\" />";
|
|
} else {
|
|
choose_from_menu ($choices, $defaultvalue, $CFG->$defaultvalue, "");
|
|
}
|
|
echo "</td>";
|
|
echo "<td>";
|
|
print_string("configpopup$optionname", "scorm");
|
|
echo "</td>";
|
|
echo "</tr>";
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|