You can now use Richtext editor to edit section texts, plus the page is a

bit more consistent now
This commit is contained in:
moodler
2003-03-11 05:43:39 +00:00
parent 8f6dcdbaa4
commit 1e5a2bf584
2 changed files with 33 additions and 3 deletions
+24 -2
View File
@@ -1,7 +1,24 @@
<BLOCKQUOTE>
<FORM name="form" method="post" action="editsection.php">
<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>
<TEXTAREA NAME=summary COLS=60 ROWS=4 WRAP=virtual><?=$form->summary ?></TEXTAREA>
</TD>
<TD align=top width=200>
&nbsp;
</TD>
<TD align=top>
<FONT SIZE=-1>
<? 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") ?>">
@@ -9,3 +26,8 @@
</P>
</FORM>
</BLOCKQUOTE>
<?
if ($usehtmleditor) {
print_richedit_javascript("theform", "summary", "no");
}
?>
+9 -1
View File
@@ -43,10 +43,18 @@
$form = $section;
}
if ($usehtmleditor = can_use_richtext_editor()) {
$onsubmit = "onsubmit=\"copyrichtext(theform.summary);\"";
} else {
$onsubmit = "";
}
$sectionname = get_string("name$course->format");
$stredit = get_string("edit", "", " $sectionname $section->section");
print_header($stredit, $stredit, "", "form.summary");
print_header("$course->shortname: $stredit", "$course->fullname",
"<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A>
-> $stredit", "form.summary");
include("editsection.html");