1 <form id=
"theform" method=
"post" action=
"messageselect.php">
2 <input type=
"hidden" name=
"id" value=
"<?php p($id) ?>" />
3 <input type
="hidden" name
="returnto" value
="<?php p($returnto) ?>" />
4 <input type
="hidden" name
="deluser" value
="" />
5 <?php
print_simple_box_start("center", ""); ?>
6 <table border=
"0" cellpadding=
"5">
9 <?php print_string("messagebody"); ?>:
11 <td align=
"left" rowspan=
"2">
12 <?php print_textarea($usehtmleditor, 25, 65, 630, 400, "messagebody", $messagebody); ?>
16 <td align=
"right" valign=
"middle" nowrap=
"nowrap">
18 helpbutton("reading", get_string("helpreading"), "moodle", true, true);
20 helpbutton("writing", get_string("helpwriting"), "moodle", true, true);
22 helpbutton("questions", get_string("helpquestions"), "moodle", true, true);
25 helpbutton("richtext", get_string("helprichtext"), "moodle", true, true);
27 emoticonhelpbutton("theform", "message");
35 <td align=
"right"><b><?php print_string("formattexttype"); ?>:
</b></td>
38 if ($usehtmleditor) { /// Trying this out for a while
39 print_string('formathtml');
40 echo '<input type="hidden" name="format" value="'.FORMAT_HTML
.'" />';
42 choose_from_menu(format_text_menu(), "format", $format, "");
44 helpbutton("textformat", get_string("helpformatting"));
49 <tr><td align=
"center" colspan=
"2"><input type=
"submit" name=
"preview" value=
"<?php print_string('preview'); ?>" /></td
></tr
>
51 <?php
print_simple_box_end(); ?>
52 <table align=
"center"><tr><th colspan=
"4" scope=
"row"><?php print_string('currentlyselectedusers'); ?></th></tr>
54 if (count($SESSION->emailto
[$id])) {
55 if (!$course->teacher
) {
56 $course->teacher
= get_string('defaultcourseteacher');
58 foreach ($SESSION->emailto
[$id] as $user) {
59 echo '<tr><td>'.fullname($user,true).'</td><td>'.$user->email
.'</td><td>';
61 echo '<img src="'.$CFG->pixpath
.'/t/user.gif" alt="'.$course->teacher
.'" title="'.$course->teacher
.'"/>';
63 if ($user->emailstop
) {
64 $error = get_string('emaildisable');
65 } elseif (empty($user->email
)) {
66 $error = get_string('emailempty');
69 echo '<img src="'.$CFG->pixpath
.'/t/emailno.gif" alt="'.$error.'" title="'.$error.'"/>';
72 echo '</td><td><input type="submit" onClick="this.form.deluser.value='.$user->id
.';" value="' . get_string('remove') . '" /></td></tr>';
76 echo '<tr><td colspan="3" align="center">'.get_string('nousersyet').'</td></tr>';