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