mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
63 lines
3.0 KiB
HTML
63 lines
3.0 KiB
HTML
<form method="post" action="<?php print($_SERVER['PHP_SELF']);?>">
|
|
<table border="0" cellpadding="4" cellspacing="2">
|
|
<tr><td colspan="3"><input type="checkbox" name="resettodefaults" value="" /> <?php print_string("editorresettodefaults");?>.</td></tr>
|
|
<tr><td colspan="3"><strong><?php print_string("editorcommonsettings");?></strong></td></tr>
|
|
<tr>
|
|
<td align="right" valign="top"><?php print_string("editorbgcolor");?>:</td>
|
|
<td valign="top"><input type="text" name="backgroundcolor" size="10" value="<?php print($CFG->editorbackgroundcolor);?>"></td>
|
|
<td valign="top"><?php print_string("edhelpbgcolor");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top"><?php print_string("editordefaultfont");?>:</td>
|
|
<td valign="top"><input type="text" name="fontfamily" size="30" value="<?php print($CFG->editorfontfamily);?>"></td>
|
|
<td valign="top"><?php print_string("edhelpfontfamily");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top"><?php print_string("editorfontsize");?>:</td>
|
|
<td valign="top"><input type="text" name="fontsize" size="10" value="<?php print($CFG->editorfontsize);?>"></td>
|
|
<td valign="top"><?php print_string("edhelpfontsize");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top"><?php print_string("editorcleanonpaste");?>:</td>
|
|
<td valign="top"><select name="killword">
|
|
<option value="1"<?php print(!$CFG->editorkillword)?"":" selected=\"selected\"";?>><?php print_string("yes");?></option>
|
|
<option value="0"<?php print(!$CFG->editorkillword)?" selected=\"selected\"":"";?>><?php print_string("no");?></option>
|
|
</select></td>
|
|
<td valign="top"><?php print_string("edhelpcleanword");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top"><?php print_string("editorenablespelling");?>:</td>
|
|
<td valign="top"><select name="spelling"<?php
|
|
if(empty($CFG->aspellpath)) {
|
|
echo " disabled=\"disabled\"";
|
|
$CFG->editorspelling = false;
|
|
}
|
|
?>>
|
|
<option value="1"<?php print(!$CFG->editorspelling)?"":" selected=\"selected\"";?>><?php print_string("yes");?></option>
|
|
<option value="0"<?php print(!$CFG->editorspelling)?" selected=\"selected\"":"";?>><?php print_string("no");?></option>
|
|
</select></td>
|
|
<td valign="top"><?php print_string("edhelpenablespelling");?></td>
|
|
</tr>
|
|
<tr><td colspan="2"><strong><?php print_string("editorfontlist");?></strong></td>
|
|
<td valign="top"><?php print_string("edhelpfontlist");?></td></tr>
|
|
<?php
|
|
if(is_array($fontlist)) {
|
|
foreach($fontlist as $fontkey => $fontvalue) {
|
|
?>
|
|
<tr>
|
|
<td align="right"><input type="text" name="fontname[]" size="15" value="<?php print($fontkey);?>"></td>
|
|
<td colspan="2"><input type="text" name="fontnamevalue[]" size="30" value="<?php print($fontvalue);?>"></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
<tr>
|
|
<td align="right"><input type="text" name="fontname[]" size="15" value=""></td>
|
|
<td colspan="2"><input type="text" name="fontnamevalue[]" size="30" value=""></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" align="center"><input type="submit" value="<?php print_string("savechanges");?>"></td>
|
|
</tr>
|
|
</table>
|
|
</form> |