acknowledgements, licensing and certfication information update
[openemr.git] / interface / main / messages / messages.php
blob56f1917094f66e4950d368ae9684a59aade1e8f6
1 <?php
2 // Copyright (C) 2010 OpenEMR Support LLC
3 // This program is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU General Public License
5 // as published by the Free Software Foundation; either version 2
6 // of the License, or (at your option) any later version.
8 //SANITIZE ALL ESCAPES
9 $sanitize_all_escapes=true;
12 //STOP FAKE REGISTER GLOBALS
13 $fake_register_globals=false;
16 require_once("../../globals.php");
17 require_once("$srcdir/pnotes.inc");
18 require_once("$srcdir/patient.inc");
19 require_once("$srcdir/acl.inc");
20 require_once("$srcdir/log.inc");
21 require_once("$srcdir/options.inc.php");
22 require_once("$srcdir/formdata.inc.php");
23 require_once("$srcdir/classes/Document.class.php");
24 require_once("$srcdir/gprelations.inc.php");
25 require_once("$srcdir/formatting.inc.php");
27 <html>
28 <head>
30 <?php html_header_show();?>
31 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
32 <script type="text/javascript" src="../../../library/dialog.js"></script>
33 <script type="text/javascript" src="../../../library/textformat.js"></script>
34 <script type="text/javascript" src="<?php echo $GLOBALS['webroot']; ?>/library/js/jquery.js"></script>
35 </head>
37 <body class="body_top">
39 <span class="title"><?php echo xlt('Message and Reminder Center'); ?></span>
40 <br /><br />
41 <span class="title"><?php echo xlt('Reminders'); ?></span>
43 <?php
45 // TajEmo Work by CB 2012/01/11 02:51:25 PM adding dated reminders
46 // I am asuming that at this point security checks have been performed
47 require_once '../dated_reminders/dated_reminders.php';
49 // Check to see if the user has Admin rights, and if so, allow access to See All.
50 $showall = isset($_GET['show_all']) ? $_GET['show_all'] : "" ;
51 if ($showall == "yes") {
52 $show_all = $showall;
54 else
56 $show_all= "no";
59 // Collect active variable and applicable html code for links
60 $form_active = $_REQUEST['form_active'];
61 $form_inactive = $_REQUEST['form_inactive'];
62 if ($form_active) {
63 $active = '1';
64 $activity_string_html = 'form_active=1';
66 else if ($form_inactive) {
67 $active = '0';
68 $activity_string_html = 'form_inactive=1';
70 else {
71 $active = 'all';
72 $activity_string_html = '';
75 //collect the task setting
76 $task= isset($_REQUEST['task']) ? $_REQUEST['task'] : "";
78 if (acl_check('admin', 'super' )) {
79 if ($show_all=='yes') {
80 $showall = "yes";
81 $lnkvar="'messages.php?show_all=no&$activity_string_html' name='Just Mine' onclick=\"top.restoreSession()\"> (".htmlspecialchars( xl('Just Mine'), ENT_NOQUOTES).")";
83 else {
84 $showall = "no";
85 $lnkvar="'messages.php?show_all=yes&$activity_string_html' name='See All' onclick=\"top.restoreSession()\"> (".htmlspecialchars( xl('See All'), ENT_NOQUOTES).")";
89 <br>
90 <table><tr><td><span class="title"><?php echo htmlspecialchars( xl('Messages'), ENT_NOQUOTES); ?></span> <a class='more' href=<?php echo $lnkvar; ?></a></td></tr></table>
91 <?php
92 //show the activity links
93 if (empty($task) || $task=="add" || $task=="delete") { ?>
94 <?php if ($active == "all") { ?>
95 <span><?php echo xlt('Show All'); ?></span>
96 <?php } else { ?>
97 <a href="messages.php" class="link" onclick="top.restoreSession()"><span><?php echo xlt('Show All'); ?></span></a>
98 <?php } ?>
100 <?php if ($active == '1') { ?>
101 <span><?php echo xlt('Show Active'); ?></span>
102 <?php } else { ?>
103 <a href="messages.php?form_active=1" class="link" onclick="top.restoreSession()"><span><?php echo xlt('Show Active'); ?></span></a>
104 <?php } ?>
106 <?php if ($active == '0') { ?>
107 <span><?php echo xlt('Show Inactive'); ?></span>
108 <?php } else { ?>
109 <a href="messages.php?form_inactive=1" class="link" onclick="top.restoreSession()"><span><?php echo xlt('Show Inactive'); ?></span></a>
110 <?php } ?>
111 <?php } ?>
113 <?php
114 switch($task) {
115 case "add" :
117 // Add a new message for a specific patient; the message is documented in Patient Notes.
118 // Add a new message; it's treated as a new note in Patient Notes.
119 $note = $_POST['note'];
120 $noteid = $_POST['noteid'];
121 $form_note_type = $_POST['form_note_type'];
122 $assigned_to = $_POST['assigned_to'];
123 $form_message_status = $_POST['form_message_status'];
124 $reply_to = $_POST['reply_to'];
125 $assigned_to_list = explode(';',$assigned_to);
126 foreach($assigned_to_list as $assigned_to){
127 if ($noteid && $assigned_to != '-patient-') {
128 updatePnote($noteid, $note, $form_note_type, $assigned_to, $form_message_status);
129 $noteid = '';
131 else {
132 if($noteid && $assigned_to == '-patient-'){
133 $row = getPnoteById($noteid);
134 if (! $row) die("getPnoteById() did not find id '$noteid'");
135 $pres = sqlQuery("SELECT lname, fname " .
136 "FROM patient_data WHERE pid = ?", array($reply_to) );
137 $patientname = $pres['lname'] . ", " . $pres['fname'];
138 $note .= "\n\n$patientname on ".$row['date']." wrote:\n\n";
139 $note .= $row['body'];
141 addPnote($reply_to, $note, $userauthorized, '1', $form_note_type, $assigned_to, '', $form_message_status);
144 } break;
145 case "save" : {
146 // Update alert.
147 $noteid = $_POST['noteid'];
148 $form_message_status = $_POST['form_message_status'];
149 updatePnoteMessageStatus($noteid,$form_message_status);
150 $task = "edit";
151 $note = $_POST['note'];
152 $title = $_POST['form_note_type'];
153 $assigned_to = $_POST['assigned_to'];
154 $reply_to = $_POST['reply_to'];
156 case "edit" : {
157 if ($noteid == "") {
158 $noteid = $_GET['noteid'];
160 // Update the message if it already exists; it's appended to an existing note in Patient Notes.
161 $result = getPnoteById($noteid);
162 if ($result) {
163 if ($title == ""){
164 $title = $result['title'];
166 if ($assigned_to == ""){
167 $assigned_to = $result['assigned_to'];
169 $body = $result['body'];
170 if ($reply_to == ""){
171 $reply_to = $result['pid'];
173 $form_message_status = $result['message_status'];
175 } break;
176 case "delete" : {
177 // Delete selected message(s) from the Messages box (only).
178 $delete_id = $_POST['delete_id'];
179 for($i = 0; $i < count($delete_id); $i++) {
180 deletePnote($delete_id[$i]);
181 newEvent("delete", $_SESSION['authUser'], $_SESSION['authProvider'], 1, "pnotes: id ".$delete_id[$i]);
183 } break;
186 if($task == "addnew" or $task == "edit") {
187 // Display the Messages page layout.
188 echo "
189 <form name=new_note id=new_note action=\"messages.php?showall=$showall&sortby=$sortby&sortorder=$sortorder&begin=$begin&$activity_string_html\" method=post>
190 <input type=hidden name=noteid id=noteid value=".htmlspecialchars( $noteid, ENT_QUOTES).">
191 <input type=hidden name=task id=task value=add>";
193 <div id="pnotes"><center>
194 <table border='0' cellspacing='8'>
195 <tr>
196 <td class='text' align='center'>
197 <b><?php echo htmlspecialchars( xl('Type'), ENT_NOQUOTES); ?>:</b>
198 <?php
199 if ($title == "") {
200 $title = "Unassigned";
202 // Added 6/2009 by BM to incorporate the patient notes into the list_options listings.
203 generate_form_field(array('data_type'=>1,'field_id'=>'note_type','list_id'=>'note_type','empty_title'=>'SKIP','order_by'=>'title'), $title);
205 &nbsp; &nbsp;
206 <b><?php echo htmlspecialchars( xl('To'), ENT_QUOTES); ?>:</b>
207 <input type='textbox' name='assigned_to_text' id='assigned_to_text' size='50' readonly='readonly' value='<?php echo htmlspecialchars(xl("Select Users From The Dropdown List"), ENT_QUOTES)?>' >
208 <input type='hidden' name='assigned_to' id='assigned_to' >
209 <select name='users' id='users' onchange='addtolist(this);' >
211 <?php
212 echo "<option value='" . htmlspecialchars( '--', ENT_QUOTES) . "'";
213 echo ">" . htmlspecialchars( xl('Select User'), ENT_NOQUOTES);
214 echo "</option>\n";
215 $ures = sqlStatement("SELECT username, fname, lname FROM users " .
216 "WHERE username != '' AND active = 1 AND " .
217 "( info IS NULL OR info NOT LIKE '%Inactive%' ) " .
218 "ORDER BY lname, fname");
219 while ($urow = sqlFetchArray($ures)) {
220 echo " <option value='" . htmlspecialchars( $urow['username'], ENT_QUOTES) . "'";
221 if ($urow['username'] == $assigned_to) echo " selected";
222 echo ">" . htmlspecialchars( $urow['lname'], ENT_NOQUOTES);
223 if ($urow['fname']) echo ", " . htmlspecialchars( $urow['fname'], ENT_NOQUOTES);
224 echo "</option>\n";
226 echo "<option value='" . htmlspecialchars( '-patient-', ENT_QUOTES) . "'";
227 if ($assigned_to == '-patient-') echo " selected";
228 echo ">" . htmlspecialchars( '-Patient-', ENT_NOQUOTES);
229 echo "</option>\n";
231 </select>
232 </td>
233 </tr>
234 <tr>
235 <td class='text' align='center'>
236 <?php if ($task != "addnew") { ?>
237 <a class="patLink" onclick="goPid('<?php echo attr($result['pid']);?>')"><?php echo htmlspecialchars( xl('Patient'), ENT_NOQUOTES); ?>:</a>
238 <?php } else { ?>
239 <b class='<?php echo ($task=="addnew"?"required":"") ?>'><?php echo htmlspecialchars( xl('Patient'), ENT_NOQUOTES); ?>:</b>
240 <?php } ?>
241 <?php
242 if ($reply_to) {
243 $prow = sqlQuery("SELECT lname, fname " .
244 "FROM patient_data WHERE pid = ?", array($reply_to) );
245 $patientname = $prow['lname'] . ", " . $prow['fname'];
247 if ($patientname == "") {
248 $patientname = xl('Click to select');
249 } ?>
250 <input type='text' size='10' name='form_patient' style='width:150px;<?php echo ($task=="addnew"?"cursor:pointer;cursor:hand;":"") ?>' value='<?php echo htmlspecialchars($patientname, ENT_QUOTES); ?>' <?php echo ($task=="addnew"?"onclick='sel_patient()' readonly":"disabled") ?> title='<?php echo ($task=="addnew"?(htmlspecialchars( xl('Click to select patient'), ENT_QUOTES)):"") ?>' />
251 <input type='hidden' name='reply_to' id='reply_to' value='<?php echo htmlspecialchars( $reply_to, ENT_QUOTES) ?>' />
252 &nbsp; &nbsp;
253 <b><?php echo htmlspecialchars( xl('Status'), ENT_NOQUOTES); ?>:</b>
254 <?php
255 if ($form_message_status == "") {
256 $form_message_status = 'New';
258 generate_form_field(array('data_type'=>1,'field_id'=>'message_status','list_id'=>'message_status','empty_title'=>'SKIP','order_by'=>'title'), $form_message_status); ?>
259 </td>
260 </tr>
261 <tr>
262 <td>
264 <?php
266 if ($noteid) {
267 $body = preg_replace('/(:\d{2}\s\()'.$result['pid'].'(\sto\s)/','${1}'.$patientname.'${2}',$body);
268 $body = nl2br(htmlspecialchars( $body, ENT_NOQUOTES));
269 echo "<div class='text' style='background-color:white; color: gray; border:1px solid #999; padding: 5px; width: 640px;'>".$body."</div>";
273 <textarea name='note' id='note' rows='8' style="width: 660px; "><?php echo htmlspecialchars( $note, ENT_NOQUOTES) ?></textarea>
274 </td>
275 </tr>
276 </table>
278 <?php if ($noteid) { ?>
279 <!-- This is for displaying an existing note. -->
280 <input type="button" id="newnote" value="<?php echo htmlspecialchars( xl('Send message'), ENT_QUOTES); ?>">
281 <input type="button" id="printnote" value="<?php echo htmlspecialchars( xl('Print message'), ENT_QUOTES); ?>">
282 <input type="button" id="cancel" value="<?php echo htmlspecialchars( xl('Cancel'), ENT_QUOTES); ?>">
283 <?php } else { ?>
284 <!-- This is for displaying a new note. -->
285 <input type="button" id="newnote" value="<?php echo htmlspecialchars( xl('Send message'), ENT_QUOTES); ?>">
286 <input type="button" id="cancel" value="<?php echo htmlspecialchars( xl('Cancel'), ENT_QUOTES); ?>">
287 <?php } ?>
289 <br>
290 </form></center></div>
291 <script language="javascript">
293 // jQuery stuff to make the page a little easier to use
295 $(document).ready(function(){
296 $("#newnote").click(function() { NewNote(); });
297 $("#printnote").click(function() { PrintNote(); });
298 obj = document.getElementById("form_message_status");
299 obj.onchange = function(){SaveNote();};
300 $("#cancel").click(function() { CancelNote(); });
301 $("#note").focus();
303 var NewNote = function () {
304 top.restoreSession();
305 if (document.forms[0].reply_to.value.length == 0) {
306 alert('<?php echo htmlspecialchars( xl('Please choose a patient'), ENT_QUOTES); ?>');
308 else if (document.forms[0].assigned_to.value.length == 0) {
309 alert('<?php echo addslashes(xl('Recipient List Is Empty')); ?>');
311 else
313 $("#new_note").submit();
317 var PrintNote = function () {
318 top.restoreSession();
319 window.open('../../patient_file/summary/pnotes_print.php?noteid=<?php echo htmlspecialchars( $noteid, ENT_QUOTES); ?>', '_blank', 'resizable=1,scrollbars=1,width=600,height=500');
322 var SaveNote = function () {
323 <?php if ($noteid) { ?>
324 top.restoreSession();
325 $("#task").val("save");
326 $("#new_note").submit();
327 <?php } ?>
330 var CancelNote = function () {
331 top.restoreSession();
332 $("#task").val("");
333 $("#new_note").submit();
336 // This is for callback by the find-patient popup.
337 function setpatient(pid, lname, fname, dob) {
338 var f = document.forms[0];
339 f.form_patient.value = lname + ', ' + fname;
340 f.reply_to.value = pid;
343 // This invokes the find-patient popup.
344 function sel_patient() {
345 dlgopen('../../main/calendar/find_patient_popup.php', '_blank', 500, 400);
348 function addtolist(sel){
349 var itemtext = document.getElementById('assigned_to_text');
350 var item = document.getElementById('assigned_to');
351 if(sel.value != '--'){
352 if(item.value){
353 if(item.value.indexOf(sel.value) == -1){
354 itemtext.value = itemtext.value +' ; '+ sel.options[sel.selectedIndex].text;
355 item.value = item.value +';'+ sel.value;
357 }else{
358 itemtext.value = sel.options[sel.selectedIndex].text;
359 item.value = sel.value;
364 </script><?php
366 else {
368 // This is for sorting the records.
369 $sort = array("users.lname", "patient_data.lname", "pnotes.title", "pnotes.date", "pnotes.message_status");
370 $sortby = (isset($_REQUEST['sortby']) && ($_REQUEST['sortby']!="")) ? $_REQUEST['sortby'] : $sort[0];
371 $sortorder = (isset($_REQUEST['sortorder']) && ($_REQUEST['sortorder']!="")) ? $_REQUEST['sortorder'] : "asc";
372 $begin = isset($_REQUEST['begin']) ? $_REQUEST['begin'] : 0;
374 for($i = 0; $i < count($sort); $i++) {
375 $sortlink[$i] = "<a href=\"messages.php?show_all=$showall&sortby=$sort[$i]&sortorder=asc&$activity_string_html\" onclick=\"top.restoreSession()\"><img src=\"../../../images/sortdown.gif\" border=0 alt=\"".htmlspecialchars( xl('Sort Up'), ENT_QUOTES)."\"></a>";
377 for($i = 0; $i < count($sort); $i++) {
378 if($sortby == $sort[$i]) {
379 switch($sortorder) {
380 case "asc" : $sortlink[$i] = "<a href=\"messages.php?show_all=$showall&sortby=$sortby&sortorder=desc&$activity_string_html\" onclick=\"top.restoreSession()\"><img src=\"../../../images/sortup.gif\" border=0 alt=\"".htmlspecialchars( xl('Sort Up'), ENT_QUOTES)."\"></a>"; break;
381 case "desc" : $sortlink[$i] = "<a href=\"messages.php?show_all=$showall&sortby=$sortby&sortorder=asc&$activity_string_html\" onclick=\"top.restoreSession()\"><img src=\"../../../images/sortdown.gif\" border=0 alt=\"".htmlspecialchars( xl('Sort Down'), ENT_QUOTES)."\"></a>"; break;
382 } break;
385 // Manage page numbering and display beneath the Messages table.
386 $listnumber = 25;
387 $total = getPnotesByUser($active,$show_all,$_SESSION['authUser'],true);
388 if($begin == "" or $begin == 0) {
389 $begin = 0;
391 $prev = $begin - $listnumber;
392 $next = $begin + $listnumber;
393 $start = $begin + 1;
394 $end = $listnumber + $start - 1;
395 if($end >= $total) {
396 $end = $total;
398 if($end < $start) {
399 $start = 0;
401 if($prev >= 0) {
402 $prevlink = "<a href=\"messages.php?show_all=$showall&sortby=$sortby&sortorder=$sortorder&begin=$prev&$activity_string_html\" onclick=\"top.restoreSession()\"><<</a>";
404 else {
405 $prevlink = "<<";
408 if($next < $total) {
409 $nextlink = "<a href=\"messages.php?show_all=$showall&sortby=$sortby&sortorder=$sortorder&begin=$next&$activity_string_html\" onclick=\"top.restoreSession()\">>></a>";
411 else {
412 $nextlink = ">>";
414 // Display the Messages table header.
415 echo "
416 <table width=100%><tr><td><table border=0 cellpadding=1 cellspacing=0 width=90% style=\"border-left: 1px #000000 solid; border-right: 1px #000000 solid; border-top: 1px #000000 solid;\">
417 <form name=wikiList action=\"messages.php?showall=$showall&sortby=$sortby&sortorder=$sortorder&begin=$begin&$activity_string_html\" method=post>
418 <input type=hidden name=task value=delete>
419 <tr height=\"24\" style=\"background:lightgrey\">
420 <td align=\"center\" width=\"25\" style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><input type=checkbox id=\"checkAll\" onclick=\"selectAll()\"></td>
421 <td width=\"20%\" style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\" class=bold>&nbsp;<b>" .
422 htmlspecialchars( xl('From'), ENT_NOQUOTES) . "</b> $sortlink[0]</td>
423 <td width=\"20%\" style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\" class=bold>&nbsp;<b>" .
424 htmlspecialchars( xl('Patient'), ENT_NOQUOTES) . "</b> $sortlink[1]</td>
425 <td style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\" class=bold>&nbsp;<b>" .
426 htmlspecialchars( xl('Type'), ENT_NOQUOTES) . "</b> $sortlink[2]</td>
427 <td width=\"15%\" style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\" class=bold>&nbsp;<b>" .
428 htmlspecialchars( xl('Date'), ENT_NOQUOTES) . "</b> $sortlink[3]</td>
429 <td width=\"15%\" style=\"border-bottom: 1px #000000 solid; \" class=bold>&nbsp;<b>" .
430 htmlspecialchars( xl('Status'), ENT_NOQUOTES) . "</b> $sortlink[4]</td>
431 </tr>";
432 // Display the Messages table body.
433 $count = 0;
434 $result = getPnotesByUser($active,$show_all,$_SESSION['authUser'],false,$sortby,$sortorder,$begin,$listnumber);
435 while ($myrow = sqlFetchArray($result)) {
436 $name = $myrow['user'];
437 $name = $myrow['users_lname'];
438 if ($myrow['users_fname']) {
439 $name .= ", " . $myrow['users_fname'];
441 $patient = $myrow['pid'];
442 $patient = $myrow['patient_data_lname'];
443 if ($myrow['patient_data_fname']) {
444 $patient .= ", " . $myrow['patient_data_fname'];
446 $count++;
447 echo "
448 <tr id=\"row$count\" style=\"background:white\" height=\"24\">
449 <td align=\"center\" style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><input type=checkbox id=\"check$count\" name=\"delete_id[]\" value=\"" .
450 htmlspecialchars( $myrow['id'], ENT_QUOTES) . "\" onclick=\"if(this.checked==true){ selectRow('row$count'); }else{ deselectRow('row$count'); }\"></td>
451 <td style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><table cellspacing=0 cellpadding=0 width=100%><tr><td width=5></td><td class=\"text\">" .
452 htmlspecialchars( $name, ENT_NOQUOTES) . "</td><td width=5></td></tr></table></td>
453 <td style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><table cellspacing=0 cellpadding=0 width=100%><tr><td width=5></td><td class=\"text\"><a href=\"messages.php?showall=$showall&sortby=$sortby&sortorder=$sortorder&begin=$begin&task=edit&noteid=" .
454 htmlspecialchars( $myrow['id'], ENT_QUOTES) . "&$activity_string_html\" onclick=\"top.restoreSession()\">" .
455 htmlspecialchars( $patient, ENT_NOQUOTES) . "</a></td><td width=5></td></tr></table></td>
456 <td style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><table cellspacing=0 cellpadding=0 width=100%><tr><td width=5></td><td class=\"text\">" .
457 htmlspecialchars( $myrow['title'], ENT_NOQUOTES) . "</td><td width=5></td></tr></table></td>
458 <td style=\"border-bottom: 1px #000000 solid; border-right: 1px #000000 solid;\"><table cellspacing=0 cellpadding=0 width=100%><tr><td width=5></td><td class=\"text\">" .
459 htmlspecialchars( oeFormatShortDate(substr($myrow['date'], 0, strpos($myrow['date'], " "))), ENT_NOQUOTES) . "</td><td width=5></td></tr></table></td>
460 <td style=\"border-bottom: 1px #000000 solid;\"><table cellspacing=0 cellpadding=0 width=100%><tr><td width=5></td><td class=\"text\">" .
461 htmlspecialchars( $myrow['message_status'], ENT_NOQUOTES) . "</td><td width=5></td></tr></table></td>
462 </tr>";
464 // Display the Messages table footer.
465 echo "
466 </form></table>
467 <table border=0 cellpadding=5 cellspacing=0 width=90%>
468 <tr>
469 <td class=\"text\"><a href=\"messages.php?showall=$showall&sortby=$sortby&sortorder=$sortorder&begin=$begin&task=addnew&$activity_string_html\" onclick=\"top.restoreSession()\">" .
470 htmlspecialchars( xl('Add New'), ENT_NOQUOTES) . "</a> &nbsp; <a href=\"javascript:confirmDeleteSelected()\" onclick=\"top.restoreSession()\">" .
471 htmlspecialchars( xl('Delete'), ENT_NOQUOTES) . "</a></td>
472 <td align=right class=\"text\">$prevlink &nbsp; $end of $total &nbsp; $nextlink</td>
473 </tr>
474 </table></td></tr></table><br>"; ?>
475 <script language="javascript">
476 // This is to confirm delete action.
477 function confirmDeleteSelected() {
478 if(confirm("<?php echo htmlspecialchars( xl('Do you really want to delete the selection?'), ENT_QUOTES); ?>")) {
479 document.wikiList.submit();
482 // This is to allow selection of all items in Messages table for deletion.
483 function selectAll() {
484 if(document.getElementById("checkAll").checked==true) {
485 document.getElementById("checkAll").checked=true;<?php
486 for($i = 1; $i <= $count; $i++) {
487 echo "document.getElementById(\"check$i\").checked=true; document.getElementById(\"row$i\").style.background='#E7E7E7'; ";
488 } ?>
490 else {
491 document.getElementById("checkAll").checked=false;<?php
492 for($i = 1; $i <= $count; $i++) {
493 echo "document.getElementById(\"check$i\").checked=false; document.getElementById(\"row$i\").style.background='#F7F7F7'; ";
494 } ?>
497 // The two functions below are for managing row styles in Messages table.
498 function selectRow(row) {
499 document.getElementById(row).style.background = "#E7E7E7";
501 function deselectRow(row) {
502 document.getElementById(row).style.background = "#F7F7F7";
504 </script><?php
508 </body>
509 </html>