| [ Index ] |
PHP Cross Reference of Moodle 1.9.3 [Build 15-Oct-2008] |
[Summary view] [Print] [Text view]
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"> 7 <tr valign="top"> 8 <td align="right"><b> 9 <?php print_string("messagebody"); ?>: 10 </b></td> 11 <td align="left" rowspan="2"> 12 <?php print_textarea($usehtmleditor, 25, 65, 630, 400, "messagebody", $messagebody); ?> 13 </td> 14 </tr> 15 <tr valign="top"> 16 <td align="right" valign="middle" nowrap="nowrap"> 17 <?php 18 helpbutton("reading", get_string("helpreading"), "moodle", true, true); 19 echo "<br />"; 20 helpbutton("writing", get_string("helpwriting"), "moodle", true, true); 21 echo "<br />"; 22 helpbutton("questions", get_string("helpquestions"), "moodle", true, true); 23 echo "<br />"; 24 if ($usehtmleditor) { 25 helpbutton("richtext", get_string("helprichtext"), "moodle", true, true); 26 } else { 27 emoticonhelpbutton("theform", "message"); 28 } 29 ?> 30 <br /> 31 </td> 32 </tr> 33 34 <tr valign="top"> 35 <td align="right"><b><?php print_string("formattexttype"); ?>:</b></td> 36 <td> 37 <?php 38 if ($usehtmleditor) { /// Trying this out for a while 39 print_string('formathtml'); 40 echo '<input type="hidden" name="format" value="'.FORMAT_HTML.'" />'; 41 } else { 42 choose_from_menu(format_text_menu(), "format", $format, ""); 43 } 44 helpbutton("textformat", get_string("helpformatting")); 45 ?> 46 </td> 47 </tr> 48 49 <tr><td align="center" colspan="2"><input type="submit" name="preview" value="<?php print_string('preview'); ?>" /></td></tr> 50 </table> 51 <?php print_simple_box_end(); ?> 52 <table align="center"><tr><th colspan="4" scope="row"><?php print_string('currentlyselectedusers'); ?></th></tr> 53 <?php 54 if (count($SESSION->emailto[$id])) { 55 if (!$course->teacher) { 56 $course->teacher = get_string('defaultcourseteacher'); 57 } 58 foreach ($SESSION->emailto[$id] as $user) { 59 echo '<tr><td>'.fullname($user,true).'</td><td>'.$user->email.'</td><td>'; 60 if ($user->teacher) { 61 echo '<img src="'.$CFG->pixpath.'/t/user.gif" alt="'.$course->teacher.'" title="'.$course->teacher.'"/>'; 62 } 63 if ($user->emailstop) { 64 $error = get_string('emaildisable'); 65 } elseif (empty($user->email)) { 66 $error = get_string('emailempty'); 67 } 68 if (!empty($error)) { 69 echo '<img src="'.$CFG->pixpath.'/t/emailno.gif" alt="'.$error.'" title="'.$error.'"/>'; 70 unset($error); 71 } 72 echo '</td><td><input type="submit" onClick="this.form.deluser.value='.$user->id.';" value="' . get_string('remove') . '" /></td></tr>'; 73 } 74 } 75 else { 76 echo '<tr><td colspan="3" align="center">'.get_string('nousersyet').'</td></tr>'; 77 } 78 ?> 79 </table> 80 </form>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jan 14 11:33:29 2009 | Cross-referenced by PHPXref 0.7 |