MDL-10286 Updated overlib.js (2 years diff!) and enabled overlib for HTML feedback...
[moodle-pu.git] / user / messageselect.php
bloba748189e004c10c774f8b1feb83a705e1487f985
1 <?php
3 require_once('../config.php');
4 require_once($CFG->dirroot.'/message/lib.php');
6 $id = required_param('id',PARAM_INT);
7 $messagebody = optional_param('messagebody','',PARAM_CLEANHTML);
8 $send = optional_param('send','',PARAM_ALPHA);
9 $returnto = optional_param('returnto','',PARAM_LOCALURL);
10 $preview = optional_param('preview','',PARAM_ALPHA);
11 $format = optional_param('format',FORMAT_MOODLE,PARAM_INT);
12 $edit = optional_param('edit','',PARAM_ALPHA);
13 $deluser = optional_param('deluser',0,PARAM_INT);
15 if (!$course = get_record('course','id',$id)) {
16 error("Invalid course id");
19 require_login();
20 require_capability('moodle/site:readallmessages', get_context_instance(CONTEXT_COURSE, $id));
22 // fix for MDL-10112
23 if (empty($CFG->messaging)) {
24 error("Messaging is disabled on this site");
27 if (empty($SESSION->emailto)) {
28 $SESSION->emailto = array();
30 if (!array_key_exists($id,$SESSION->emailto)) {
31 $SESSION->emailto[$id] = array();
34 if ($deluser) {
35 if (array_key_exists($id,$SESSION->emailto) && array_key_exists($deluser,$SESSION->emailto[$id])) {
36 unset($SESSION->emailto[$id][$deluser]);
40 if (empty($SESSION->emailselect[$id]) || $messagebody) {
41 $SESSION->emailselect[$id] = array('messagebody' => $messagebody);
44 $messagebody = $SESSION->emailselect[$id]['messagebody'];
46 $count = 0;
48 foreach ($_POST as $k => $v) {
49 if (preg_match('/^(user|teacher)(\d+)$/',$k,$m)) {
50 if (!array_key_exists($m[2],$SESSION->emailto[$id])) {
51 if ($user = get_record_select('user','id = '.$m[2],'id,firstname,lastname,idnumber,email,emailstop,mailformat,lastaccess')) {
52 $SESSION->emailto[$id][$m[2]] = $user;
53 $SESSION->emailto[$id][$m[2]]->teacher = ($m[1] == 'teacher');
54 $count++;
60 $strtitle = get_string('coursemessage');
62 if (empty($messagebody)) {
63 $formstart = "theform.messagebody";
64 } else {
65 $formstart = "";
68 print_header($strtitle,$strtitle,"<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> -> <a href=\"index.php?id=$course->id\">".get_string("participants")."</a> -> ".$strtitle,$formstart);
71 if ($count) {
72 if ($count == 1) {
73 $heading = get_string('addedrecip','moodle',$count);
74 } else {
75 $heading = get_string('addedrecips','moodle',$count);
77 print_heading($heading);
80 if (!empty($messagebody) && !$edit && !$deluser && ($preview || $send)) {
81 if (count($SESSION->emailto[$id])) {
82 if ($preview) {
83 echo '<form method="post" action="messageselect.php" style="margin: 0 20px;">
84 <input type="hidden" name="returnto" value="'.stripslashes($returnto).'" />
85 <input type="hidden" name="id" value="'.$id.'" />
86 <input type="hidden" name="format" value="'.$format.'" />
88 echo "<h3>".get_string('previewhtml')."</h3><div class=\"messagepreview\">\n".format_text(stripslashes($messagebody),$format)."\n</div>";
89 echo "\n<p align=\"center\"><input type=\"submit\" name=\"send\" value=\"Send\" /> <input type=\"submit\" name=\"edit\" value=\"Edit\" /></p>\n</form>";
90 } elseif ($send) {
91 $good = 1;
92 $teachers = array();
93 foreach ($SESSION->emailto[$id] as $user) {
94 $good = $good && message_post_message($USER,$user,addslashes($messagebody),$format,'direct');
95 if ($user->teacher) {
96 $teachers[] = $user->id;
99 if ($good) {
100 print_heading(get_string('messagedselectedusers'));
101 unset($SESSION->emailto[$id]);
102 unset($SESSION->emailselect[$id]);
103 } else {
104 print_heading(get_string('messagedselectedusersfailed'));
106 echo '<p align="center"><a href="index.php?id='.$id.'">'.get_string('backtoparticipants').'</a></p>';
108 print_footer();
109 exit;
110 } else {
111 notify(get_string('nousersyet'));
115 echo '<p align="center"><a href="'.$returnto.'">'.get_string("keepsearching").'</a>'.((count($SESSION->emailto[$id])) ? ', '.get_string('usemessageform') : '').'</p>';
117 if ((!empty($send) || !empty($preview) || !empty($edit)) && (empty($messagebody))) {
118 notify(get_string('allfieldsrequired'));
121 if (count($SESSION->emailto[$id])) {
122 $usehtmleditor = can_use_richtext_editor();
123 require("message.html");
124 if ($usehtmleditor) {
125 use_html_editor("messagebody");
129 print_footer();