2 //// Copyright (C) 2009 Aron Racho <aron@mi-squared.com>
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
10 $sanitize_all_escapes=true;
13 //STOP FAKE REGISTER GLOBALS
14 $fake_register_globals=false;
17 require_once("../interface/globals.php");
18 require_once("$srcdir/sql.inc");
22 <link rel
="stylesheet" href
="<?php echo $css_header;?>" type
="text/css">
23 <style type
="text/css">
27 padding
: 5px
3px
5px
3px
;
31 <script language
="javascript">
32 function doSelectorButton() {
33 var selector
= document
.getElementById('selectorButton');
35 if ( selector
.value
== "<?php echo htmlspecialchars( xl('Select All'), ENT_QUOTES); ?>" ) {
36 selector
.value
= "<?php echo htmlspecialchars( xl('Unselect All'), ENT_QUOTES); ?>";
39 selector
.value
= "<?php echo htmlspecialchars( xl('Select All'), ENT_QUOTES); ?>";
42 var checkBoxes
= document
.getElementsByName( "searchFields" );
43 setAll( checkBoxes
, value
);
46 function setAll(field
, value
) {
47 for (i
= 0; i
< field
.length
; i++
) {
48 field
[i
].checked
= value
;
53 // buildup fieldstring
54 var checkBoxes
= document
.getElementsByName( "searchFields" );
56 var ssc
= document
.forms
[0].search_service_code
.value
;
57 for (i
= 0; i
< checkBoxes
.length
; i++
) {
58 if ( checkBoxes
[i
].checked
) {
59 if ( fieldString
!= '' ) {
62 fieldString +
= checkBoxes
[i
].value
;
65 if ( opener
!= null ) {
66 if (fieldString
== undefined ||
(fieldString
== '' && ssc
.length
== '')) {
67 alert("<?php echo htmlspecialchars( xl('You must select some fields to continue.'), ENT_QUOTES); ?>");
70 opener
.processFilter(fieldString
, ssc
);
83 <b
><?php
echo htmlspecialchars(xl('Select Fields')); ?
>:</b
>
86 <input type
="button" value
="<?php echo htmlspecialchars( xl('Submit'), ENT_QUOTES); ?>" id
="submit" onclick
="javascript:doSubmit();"></input
>
89 <input type
="button" value
="<?php echo htmlspecialchars( xl('Select All'), ENT_QUOTES); ?>" id
="selectorButton" onclick
="javascript:doSelectorButton();"></input
>
95 function echoFilterItem($iter, $fieldId, $fieldTitle) {
103 echo "<input type='checkbox' value='".htmlspecialchars( $
{fieldId
}, ENT_QUOTES
)."' name='searchFields'/> <b>".htmlspecialchars( $fieldTitle, ENT_NOQUOTES
)."</b>";
107 $layoutCols = sqlStatement( "SELECT field_id, title, description, group_name "
108 . "FROM layout_options "
109 . "WHERE form_id='DEM' "
110 . "AND group_name not like ('%Employer%' ) AND uor != 0 "
111 . "ORDER BY group_name,seq"
116 for($iter=0; $row=sqlFetchArray($layoutCols); $iter++
) {
117 $label = $row['title'] ?
$row['title'] : $row['description'];
119 $label = $row['field_id'];
124 xl_layout_label($label)
127 echoFilterItem($iter++
, 'pid', xl('Internal Identifier (pid)'));
129 // Finish the row gracefully.
130 while ($iter++ %
3) echo "<td> </td>\n";
133 // Write a final line to solicit an optional service code.
135 echo "<td colspan='3'>";
136 echo "<input type='text' value='' name='search_service_code' size='8' /> " .
137 "<b>" . htmlspecialchars(xl('Service Code')) . "</b> (" .
138 htmlspecialchars(xl('if entered, select only those who have had this service')) . ")";