moodle/mod/label/mod.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2004-07-28 06:55:51 +00:00
<?php
if (!isset($form->content)) {
$form->content = '';
}
?>
<form name="form" method="post" action="mod.php">
<center>
<table cellpadding=5>
<tr valign=top>
<td align=right><p><b><?php print_string("labeltext", "label") ?>:</b></p>
<font size="1">
<?php
helpbutton("writing", get_string("helpwriting"), "moodle", true, true);
echo "<br />";
if ($usehtmleditor) {
helpbutton("richtext", get_string("helprichtext"), "moodle", true, true);
} else {
emoticonhelpbutton("form", "description");
}
?>
<br />
</font>
</td>
<td>
<?php
print_textarea($usehtmleditor, 20, 60, 680, 400, "content", $form->content);
?>
</td>
</tr>
</table>
<!-- these hidden variables are always the same -->
2004-09-12 14:41:49 +00:00
<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) ?>" />
<input type="submit" value="<?php print_string("savechanges") ?>" />
</center>
</form>