mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 20:36:42 +01:00
25 lines
970 B
HTML
25 lines
970 B
HTML
<form id="theform" method="post" action="editsection.php">
|
|
<table summary="Summary of week" cellpadding="5" class="boxaligncenter">
|
|
<tr valign="top">
|
|
<td align="right"><p><b><?php print_string("summary") ?>:</b></p>
|
|
<?php helpbutton("summaries", get_string("helpsummaries"), "moodle", true, true);
|
|
echo "<br />";
|
|
if ($usehtmleditor) {
|
|
helpbutton("richtext2", get_string("helprichtext"), "moodle", true, true);
|
|
} else {
|
|
helpbutton("text2", get_string("helptext"), "moodle", true, true);
|
|
}
|
|
?>
|
|
</td>
|
|
<td>
|
|
<?php print_textarea($usehtmleditor, 25, 60, 0, 0, 'summary', $form->summary, 0, false, 'summary'); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="singlebutton">
|
|
<input type="hidden" name="id" value="<?php echo $form->id ?>" />
|
|
<input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
|
|
<input type="submit" value="<?php print_string("savechanges") ?>" />
|
|
</div>
|
|
</form>
|