Somebody screwed up creating preferences for new user when added javascript preferenc...
[squirrelmail.git] / src / addrbook_search_html.php
1 <?php
2 /**
3 ** addrbook_search.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Handle addressbook searching with pure html.
9 **
10 ** This file is included from compose.php
11 **
12 ** NOTE: A lot of this code is similar to the code in
13 ** addrbook_search.html -- If you change one, change
14 ** the other one too!
15 **
16 ** $Id$
17 **/
18
19 require_once('../src/validate.php');
20 require_once('../functions/date.php');
21 require_once('../functions/smtp.php');
22 require_once('../functions/display_messages.php');
23 require_once('../functions/addressbook.php');
24 require_once('../functions/plugin.php');
25
26 // Insert hidden data
27 function addr_insert_hidden() {
28 global $body, $subject, $send_to, $send_to_cc, $send_to_bcc, $mailbox,
29 $identity;
30
31 echo '<input type=hidden value="';
32 if (substr($body, 0, 1) == "\r")
33 echo "\n";
34 echo htmlspecialchars($body) . '" name=body>' . "\n";
35 echo '<input type=hidden value="' . htmlspecialchars($subject)
36 . '" name=subject>' . "\n";
37 echo '<input type=hidden value="' . htmlspecialchars($send_to)
38 . '" name=send_to>' . "\n";
39 echo "<input type=hidden value=\"" . htmlspecialchars($send_to_cc)
40 . '" name=send_to_cc>' . "\n";
41 echo "<input type=hidden value=\"" . htmlspecialchars($send_to_bcc)
42 . '" name=send_to_bcc>' . "\n";
43 echo "<input type=hidden value=\"" . htmlspecialchars($identity)
44 . '" name=identity>' . "\n";
45 echo "<input type=hidden name=mailbox value=\"" .
46 htmlspecialchars($mailbox) . "\">\n";
47 echo "<input type=hidden value=\"true\" name=from_htmladdr_search>\n";
48 }
49
50
51 // List search results
52 function addr_display_result($res, $includesource = true) {
53 global $color, $PHP_SELF;
54
55 if(sizeof($res) <= 0) return;
56
57 echo '<form method=post action="' . $PHP_SELF . "\">\n";
58 echo '<input type=hidden name="html_addr_search_done" value="true">';
59 echo "\n";
60 addr_insert_hidden();
61 $line = 0;
62
63 print "<TABLE BORDER=0 WIDTH=\"98%\" ALIGN=center>";
64 printf("<TR BGCOLOR=\"$color[9]\"><TH ALIGN=left>&nbsp;".
65 "<TH ALIGN=left>&nbsp;%s<TH ALIGN=left>&nbsp;%s".
66 "<TH ALIGN=left>&nbsp;%s",
67 _("Name"), _("E-mail"), _("Info"));
68
69 if($includesource)
70 printf("<TH ALIGN=left WIDTH=\"10%%\">&nbsp;%s", _("Source"));
71
72 print "</TR>\n";
73
74 foreach ($res as $row) {
75 echo '<tr';
76 if ($line % 2) echo ' bgcolor="' . $color[0] . '"';
77 echo ' nowrap><td nowrap align=center width="5%">';
78 echo '<input type=checkbox name="send_to_search[T' . $line . ']" value = "' .
79 htmlspecialchars($row['email']) . '">&nbsp;To&nbsp;';
80 echo '<input type=checkbox name="send_to_search[C' . $line . ']" value = "' .
81 htmlspecialchars($row['email']) . '">&nbsp;Cc&nbsp;';
82 echo '<input type=checkbox name="send_to_search[B' . $line . ']" value = "' .
83 htmlspecialchars($row['email']) . '">&nbsp;Bcc&nbsp;';
84 echo '</td><td nowrap>&nbsp;' . $row['name'] . '&nbsp;</td>';
85 echo '<td nowrap>&nbsp;' . $row['email'] . '&nbsp;</td>';
86 echo '<td nowrap>&nbsp;' . $row['label'] . '&nbsp;</td>';
87 if($includesource)
88 echo '<td nowrap>&nbsp;' . $row['source'] . '&nbsp;</td>';
89 echo "</tr>\n";
90 $line ++;
91 }
92 printf('<TR><TD ALIGN=center COLSPAN=%d><INPUT TYPE=submit '.
93 'NAME="addr_search_done" VALUE="%s"></TD></TR>',
94 4 + ($includesource ? 1 : 0),
95 _("Use Addresses"));
96 print '</TABLE>';
97 print '<INPUT TYPE=hidden VALUE=1 NAME="html_addr_search_done">';
98 print '</FORM>';
99 }
100
101 // --- End functions ---
102
103 global $mailbox;
104 displayPageHeader($color, $mailbox);
105
106 // Initialize addressbook
107 $abook = addressbook_init();
108
109 ?>
110
111 <br>
112 <table width=95% align=center cellpadding=2 cellspacing=2 border=0>
113 <tr><td bgcolor="<?php echo $color[0] ?>">
114 <center><b><?php echo _("Address Book Search") ?></b></center>
115 </td></tr></table>
116
117 <?php
118 // Search form
119 print "<CENTER>\n";
120 print "<TABLE BORDER=0>\n";
121 print "<TR><TD NOWRAP VALIGN=middle>\n";
122 printf('<FORM METHOD=post NAME=f ACTION="%s?html_addr_search=true">'."\n", $PHP_SELF);
123 print "<CENTER>\n";
124 printf(" <nobr><STRONG>%s</STRONG>\n", _("Search for"));
125 addr_insert_hidden();
126 if (! isset($addrquery))
127 $addrquery = '';
128 printf(" <INPUT TYPE=text NAME=addrquery VALUE=\"%s\" SIZE=26>\n",
129 htmlspecialchars($addrquery));
130
131 // List all backends to allow the user to choose where to search
132 if(!isset($backend)) $backend = "";
133 if($abook->numbackends > 1) {
134 printf("<STRONG>%s</STRONG>&nbsp;<SELECT NAME=backend>\n",
135 _("in"));
136 printf("<OPTION VALUE=-1 %s>%s\n",
137 ($backend == -1) ? "SELECTED" : "",
138 _("All address books"));
139 $ret = $abook->get_backend_list();
140 while(list($undef,$v) = each($ret))
141 printf("<OPTION VALUE=%d %s>%s\n",
142 $v->bnum,
143 ($backend == $v->bnum) ? "SELECTED" : "",
144 $v->sname);
145 print "</SELECT>\n";
146 } else {
147 print "<INPUT TYPE=hidden NAME=backend VALUE=-1>\n";
148 }
149 printf("<INPUT TYPE=submit VALUE=\"%s\">",
150 _("Search"));
151 printf("&nbsp;|&nbsp;<INPUT TYPE=submit VALUE=\"%s\" NAME=listall>\n",
152 _("List all"));
153 print '</FORM></center>';
154
155 print "</TD></TR></TABLE>\n";
156 addr_insert_hidden();
157 print "</CENTER>";
158 do_hook('addrbook_html_search_below');
159 // End search form
160
161 // Show personal addressbook
162 if($addrquery == '' || !empty($listall)) {
163
164 if(! isset($backend) || $backend != -1 || $addrquery == '') {
165 if($addrquery == '')
166 $backend = $abook->localbackend;
167
168 //printf("<H3 ALIGN=center>%s</H3>\n", $abook->backends[$backend]->sname);
169
170 $res = $abook->list_addr($backend);
171
172 if(is_array($res)) {
173 addr_display_result($res, false);
174 } else {
175 printf("<P ALIGN=center><STRONG>"._("Unable to list addresses from %s").
176 "</STRONG></P>\n", $abook->backends[$backend]->sname);
177 }
178
179 } else {
180 $res = $abook->list_addr();
181 addr_display_result($res, true);
182 }
183 exit;
184
185 } else
186
187 // Do the search
188 if(!empty($addrquery) && empty($listall)) {
189
190 if($backend == -1) {
191 $res = $abook->s_search($addrquery);
192 } else {
193 $res = $abook->s_search($addrquery, $backend);
194 }
195
196 if(!is_array($res)) {
197 printf("<P ALIGN=center><B><BR>%s:<br>%s</B></P>\n</BODY></HTML>\n",
198 _("Your search failed with the following error(s)"),
199 $abook->error);
200 } else if(sizeof($res) == 0) {
201 printf("<P ALIGN=center><BR><B>%s.</B></P>\n</BODY></HTML>\n",
202 _("No persons matching your search was found"));
203 } else {
204 addr_display_result($res);
205 }
206 }
207
208 if ($addrquery == '' || sizeof($res) == 0) {
209 printf('<center><FORM METHOD=post NAME=k ACTION="compose.php">'."\n", $PHP_SELF);
210 addr_insert_hidden();
211 printf("<INPUT TYPE=submit VALUE=\"%s\" NAME=return>\n", _("Return"));
212 print '</form>';
213 print '</center></nobr>';
214 }
215
216 ?>
217 </body></html>