MDL-39915 cleanup core_htmlpurifier_testcase
[moodle.git] / user / message.html
blob1982d2fce02b39ab5db3bc410be6480d02987b40
1 <form id="theform" method="post" action="messageselect.php">
2 <input type="hidden" name="id" value="<?php p($id) ?>" />
3 <input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
4 <input type="hidden" name="returnto" value="<?php p($returnto) ?>" />
5 <input type="hidden" name="deluser" value="" />
6 <?php echo $OUTPUT->box_start(); ?>
7 <table border="0" cellpadding="5">
8 <tr valign="top">
9 <td align="right"><b>
10 <?php print_string("messagebody"); ?>:
11 </b></td>
12 <td align="left" rowspan="2">
13 <?php print_textarea($usehtmleditor, 25, 65, 630, 400, "messagebody", $messagebody); ?>
14 </td>
15 </tr>
17 <tr valign="top">
18 <td align="right"><label for="menuformat"><b><?php print_string("formattexttype"); ?>:</b></label></td>
19 <td>
20 <?php
21 if ($usehtmleditor) { /// Trying this out for a while
22 print_string('formathtml');
23 echo '<input type="hidden" name="format" value="'.FORMAT_HTML.'" />';
24 } else {
25 choose_from_menu(format_text_menu(), "format", $format, "");
28 </td>
29 </tr>
31 <tr><td align="center" colspan="2"><input type="submit" name="preview" value="<?php print_string('preview'); ?>" /></td></tr>
32 </table>
33 <?php echo $OUTPUT->box_end(); ?>
34 <table align="center"><tr><th colspan="4" scope="row"><?php print_string('currentlyselectedusers'); ?></th></tr>
35 <?php
36 if (count($SESSION->emailto[$id])) {
37 foreach ($SESSION->emailto[$id] as $user) {
38 echo '<tr><td>'.fullname($user,true).'</td>';
39 // Check to see if we should be showing the email address.
40 if ($user->maildisplay == 0) { // 0 = don't display my email to anyone.
41 echo '<td>' . get_string('emaildisplayhidden') . '</td><td>';
42 } else {
43 echo '<td>'.$user->email.'</td><td>';
45 if (empty($user->email)) {
46 $error = get_string('emailempty');
48 if (!empty($error)) {
49 echo '<img src="'.$OUTPUT->pix_url('t/emailno') . '" alt="'.$error.'" class="iconsmall" title="'.$error.'"/>';
50 unset($error);
52 echo '</td><td><input type="submit" onClick="this.form.deluser.value='.$user->id.';" value="' . get_string('remove') . '" /></td></tr>';
55 else {
56 echo '<tr><td colspan="3" align="center">'.get_string('nousersyet').'</td></tr>';
59 </table>
60 </form>