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