mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
713d78eafa
A Resource Parameter controls this (it defaults to OFF). When on, you see a third button when selecting a file, which lets you select a LOCAL file on your own filesystem (but it isn't uploaded). The local file is included in the web page when viewed. All users see a link that helps them set up a user_preference for the location of these files on their own system (usually a CD_ROM drive).
135 lines
4.0 KiB
HTML
135 lines
4.0 KiB
HTML
<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">resource_framesize:</td>
|
|
<td>
|
|
<input name="resource_framesize" type="text" size="5" value="<?php p($CFG->resource_framesize) ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string("configframesize", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_websearch:</td>
|
|
<td>
|
|
<input name="resource_websearch" type="text" size="30" value="<?php p($CFG->resource_websearch) ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string("configwebsearch", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_defaulturl:</td>
|
|
<td>
|
|
<input name="resource_defaulturl" type="text" size="30" value="<?php p($CFG->resource_defaulturl) ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string("configdefaulturl", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_secretphrase:</td>
|
|
<td>
|
|
<input name="resource_secretphrase" type="text" size="30" value="<?php p($CFG->resource_secretphrase) ?>" />
|
|
</td>
|
|
<td>
|
|
<?php print_string("configsecretphrase", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_allowlocalfiles:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices["0"] = get_string("no");
|
|
$choices["1"] = get_string("yes");
|
|
choose_from_menu ($choices, "resource_allowlocalfiles", $CFG->resource_allowlocalfiles, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configallowlocalfiles", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_filterexternalpages:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices["0"] = get_string("no");
|
|
$choices["1"] = get_string("yes");
|
|
choose_from_menu ($choices, "resource_filterexternalpages", $CFG->resource_filterexternalpages, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configfilterexternalpages", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_popup:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices[""] = get_string("no");
|
|
$choices["checked"] = get_string("yes");
|
|
choose_from_menu ($choices, "resource_popup", $CFG->resource_popup, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configpopup", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<?php foreach ($RESOURCE_WINDOW_OPTIONS as $optionname) {
|
|
$defaultvalue = "resource_popup$optionname";
|
|
echo "<tr valign=\"top\">";
|
|
echo "<td align=\"right\">$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", "resource");
|
|
echo "</td>";
|
|
echo "</tr>";
|
|
}
|
|
?>
|
|
<tr valign="top">
|
|
<td align="right">resource_windowsettings:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices["0"] = get_string("hidesettings");
|
|
$choices["1"] = get_string("showsettings");
|
|
choose_from_menu ($choices, "resource_windowsettings", $CFG->resource_windowsettings, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configwindowsettings", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">resource_parametersettings:</td>
|
|
<td>
|
|
<?php
|
|
unset($choices);
|
|
$choices["0"] = get_string("hidesettings");
|
|
$choices["1"] = get_string("showsettings");
|
|
choose_from_menu ($choices, "resource_parametersettings", $CFG->resource_parametersettings, "");
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_string("configparametersettings", "resource") ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|