mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<BLOCKQUOTE>
|
|
<FORM name="theform" method="post" <?=$onsubmit ?> action="editsection.php">
|
|
<TABLE BORDER=0 cellpadding=0 cellspacing=0>
|
|
<TR>
|
|
<TD align=top>
|
|
<P><B><? print_string("summaryof", "", "$sectionname $form->section") ?></B></P>
|
|
</TD>
|
|
<TD align=top width=100>
|
|
|
|
</TD>
|
|
<TD align=top>
|
|
<FONT SIZE=-1>
|
|
<? helpbutton("summaries", get_string("helpsummaries"), "moodle", true, true);
|
|
if ($usehtmleditor) {
|
|
helpbutton("richtext", get_string("helprichtext"), "moodle", true, true);
|
|
} else {
|
|
helpbutton("text", get_string("helptext"), "moodle", true, true);
|
|
}
|
|
?>
|
|
</FONT>
|
|
</TD>
|
|
</TR></TABLE>
|
|
<? print_textarea($usehtmleditor, 4, 60, 595, 200, "summary", $form->summary); ?>
|
|
<P>
|
|
<INPUT type="hidden" name=id value="<?=$form->id ?>">
|
|
<INPUT type="submit" value="<? print_string("savechanges") ?>">
|
|
<INPUT type="reset" value="<? print_string("revert") ?>">
|
|
</P>
|
|
</FORM>
|
|
</BLOCKQUOTE>
|
|
<?
|
|
if ($usehtmleditor) {
|
|
print_richedit_javascript("theform", "summary", "no");
|
|
}
|
|
?>
|