Trimming whitespace
[squirrelmail.git] / src / addrbook_search_html.php
CommitLineData
c1e15177 1<?php
895905c0 2
35586184 3/**
4 * addrbook_search_html.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
35586184 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 *
30967a1e 13 * @version $Id$
8f6f9ba5 14 * @package squirrelmail
de00443c 15 * @subpackage addressbook
35586184 16 */
c1e15177 17
91e0dccc 18/**
30967a1e 19 * Path for SquirrelMail required files.
20 * @ignore
21 */
abb3c512 22if (! defined('SM_PATH') ) {
39bfea8f 23 define('SM_PATH','../');
abb3c512 24}
86725763 25
8f6f9ba5 26/** SquirrelMail required files. */
08185f2a 27require_once(SM_PATH . 'include/validate.php');
1e12d1ff 28require_once(SM_PATH . 'functions/global.php');
86725763 29require_once(SM_PATH . 'functions/date.php');
86725763 30require_once(SM_PATH . 'functions/display_messages.php');
31require_once(SM_PATH . 'functions/addressbook.php');
32require_once(SM_PATH . 'functions/plugin.php');
33require_once(SM_PATH . 'functions/strings.php');
34require_once(SM_PATH . 'functions/html.php');
c1e15177 35
1e12d1ff 36sqgetGlobalVar('session', $session, SQ_POST);
37sqgetGlobalVar('mailbox', $mailbox, SQ_POST);
38sqgetGlobalVar('addrquery', $addrquery, SQ_POST);
39sqgetGlobalVar('listall', $listall, SQ_POST);
40sqgetGlobalVar('backend', $backend, SQ_POST);
0b97a708 41
8f6f9ba5 42/**
43 * Insert hidden data
44 */
00a065a6 45function addr_insert_hidden() {
46 global $body, $subject, $send_to, $send_to_cc, $send_to_bcc, $mailbox,
6a12032e 47 $identity, $session;
00a065a6 48
65a5bae6 49 if (substr($body, 0, 1) == "\r") {
62366261 50 echo addHidden('body', "\n".$body);
51 } else {
52 echo addHidden('body', $body);
14f1b90b 53 }
54
62366261 55 echo addHidden('session', $session).
56 addHidden('subject', $subject).
39bfea8f 57 addHidden('send_to', $send_to).
58 addHidden('send_to_bcc', $send_to_bcc).
59 addHidden('send_to_cc', $send_to_cc).
60 addHidden('identity', $identity).
61 addHidden('mailbox', $mailbox).
62 addHidden('from_htmladdr_search', 'true');
62366261 63}
64
14f1b90b 65
8f6f9ba5 66/**
67 * List search results
68 * @param array $res Array containing results of search
69 * @param bool $includesource UNDOCUMENTED [Default=true]
70 */
00a065a6 71function addr_display_result($res, $includesource = true) {
e842b215 72 global $color, $javascript_on, $PHP_SELF, $squirrelmail_language;
00a065a6 73
74 if (sizeof($res) <= 0) return;
75
c435f076 76 echo addForm($PHP_SELF, 'post', 'addrbook').
62366261 77 addHidden('html_addr_search_done', 'true');
00a065a6 78 addr_insert_hidden();
79 $line = 0;
80
0bb8cc68 81if ($javascript_on) {
82 print
83 '<script language="JavaScript" type="text/javascript">' .
84 "\n<!-- \n" .
85 "function CheckAll(ch) {\n" .
86 " for (var i = 0; i < document.addrbook.elements.length; i++) {\n" .
87 " if( document.addrbook.elements[i].type == 'checkbox' &&\n" .
88 " document.addrbook.elements[i].name.substr(0,16) == 'send_to_search['+ch ) {\n" .
89 " document.addrbook.elements[i].checked = !(document.addrbook.elements[i].checked);\n".
90 " }\n" .
91 " }\n" .
92 "}\n" .
93 "//-->\n" .
94 "</script>\n";
c435f076 95 $chk_all = '<a href="#" onclick="CheckAll(\'T\');">' . _("All") . '</a>&nbsp;<font color="'.$color[9].'">'._("To").'</font>'.
0bb8cc68 96 '&nbsp;&nbsp;'.
c435f076 97 '<a href="#" onclick="CheckAll(\'C\');">' . _("All") . '</a>&nbsp;<font color="'.$color[9].'">'._("Cc").'</font>'.
0bb8cc68 98 '&nbsp;&nbsp;'.
c435f076 99 '<a href="#" onclick="CheckAll(\'B\');">' . _("All") . '</a>';
0bb8cc68 100 }
7b783475 101 echo html_tag( 'table', '', 'center', '', 'border="0" width="98%"' ) .
102 html_tag( 'tr', '', '', $color[9] ) .
103 html_tag( 'th', '&nbsp;' . $chk_all, 'left' ) .
104 html_tag( 'th', '&nbsp;' . _("Name"), 'left' ) .
105 html_tag( 'th', '&nbsp;' . _("E-mail"), 'left' ) .
106 html_tag( 'th', '&nbsp;' . _("Info"), 'left' );
00a065a6 107
108 if ($includesource) {
7b783475 109 echo html_tag( 'th', '&nbsp;' . _("Source"), 'left', '', 'width="10%"' );
00a065a6 110 }
111
7b783475 112 echo "</tr>\n";
00a065a6 113
114 foreach ($res as $row) {
3d0cada3 115 $email = AddressBook::full_address($row);
91e0dccc 116 if ($line % 2) {
93adc018 117 $tr_bgcolor = $color[12];
118 } else {
119 $tr_bgcolor = $color[4];
120 }
e842b215 121 if ($squirrelmail_language == 'ja_JP')
122 {
c435f076 123 echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) .
e842b215 124 html_tag( 'td',
39bfea8f 125 '<input type="checkbox" name="send_to_search[T' . $line . ']" value = "' .
126 htmlspecialchars($email) . '" />&nbsp;' . _("To") . '&nbsp;' .
127 '<input type="checkbox" name="send_to_search[C' . $line . ']" value = "' .
128 htmlspecialchars($email) . '" />&nbsp;' . _("Cc") . '&nbsp;' .
129 '<input type="checkbox" name="send_to_search[B' . $line . ']" value = "' .
130 htmlspecialchars($email) . '" />&nbsp;' . _("Bcc") . '&nbsp;' ,
c435f076 131 'center', '', 'width="5%" style="white-space: nowrap;"' ) .
132 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['lastname']) . ' ' . htmlspecialchars($row['firstname']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
133 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['email']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
134 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['label']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
e842b215 135 } else {
c435f076 136 echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) .
7b783475 137 html_tag( 'td',
39bfea8f 138 addCheckBox('send_to_search[T'.$line.']', FALSE, $email).
62366261 139 '&nbsp;' . _("To") . '&nbsp;' .
39bfea8f 140 addCheckBox('send_to_search[C'.$line.']', FALSE, $email).
141 '&nbsp;' . _("Cc") . '&nbsp;' .
142 addCheckBox('send_to_search[B'.$line.']', FALSE, $email).
143 '&nbsp;' . _("Bcc") . '&nbsp;' ,
c435f076 144 'center', '', 'width="5%" style="white-space: nowrap;"' ) .
145 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['name']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
146 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['email']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' ) .
147 html_tag( 'td', '&nbsp;' . htmlspecialchars($row['label']) . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
e842b215 148 }
7b783475 149
00a065a6 150 if ($includesource) {
c435f076 151 echo html_tag( 'td', '&nbsp;' . $row['source'] . '&nbsp;', 'left', '', 'style="white-space: nowrap;"' );
00a065a6 152 }
153 echo "</tr>\n";
154 $line ++;
155 }
7b783475 156 if ($includesource) { $td_colspan = '5'; } else { $td_colspan = '4'; }
157 echo html_tag( 'tr',
158 html_tag( 'td',
39bfea8f 159 '<input type="submit" name="addr_search_done" value="' .
1bb8fb4c 160 _("Use Addresses") . '" /> ' .
161 '<input type="submit" name="addr_search_cancel" value="' .
162 _("Cancel") . '" />',
7b783475 163 'center', '', 'colspan="'. $td_colspan .'"' )
164 ) .
39bfea8f 165 '</table>' .
166 addHidden('html_addr_search_done', '1').
167 '</form>';
00a065a6 168}
169
170/* --- End functions --- */
171
9c3e6cd4 172if ($compose_new_win == '1') {
173 compose_Header($color, $mailbox);
174}
175else {
176 displayPageHeader($color, $mailbox);
177}
40262494 178
179/** set correct value of $default_charset */
180global $default_charset;
181set_my_charset();
182
00a065a6 183/* Initialize addressbook */
184$abook = addressbook_init();
c1e15177 185
14f1b90b 186
39bfea8f 187echo '<br />' .
7b783475 188html_tag( 'table',
189 html_tag( 'tr',
190 html_tag( 'td', '<b>' . _("Address Book Search") . '</b>', 'center', $color[0] )
191 ) ,
192'center', '', 'width="95%" cellpadding="2" cellspacing="2" border="0"' );
14f1b90b 193
00a065a6 194
195/* Search form */
7b783475 196echo '<center>' .
197 html_tag( 'table', '', 'center', '', 'border="0"' ) .
198 html_tag( 'tr' ) .
c435f076 199 html_tag( 'td', '', 'left', '', 'style="white-space: nowrap;" valign="middle"' ) . "\n" .
39bfea8f 200 addForm($PHP_SELF.'?html_addr_search=true', 'post', 'f').
201 "\n<center>\n" .
202 ' <nobr><strong>' . _("Search for") . "</strong>\n";
00a065a6 203addr_insert_hidden();
204if (! isset($addrquery))
205 $addrquery = '';
62366261 206echo addInput('addrquery', $addrquery, 26);
00a065a6 207
208/* List all backends to allow the user to choose where to search */
209if (!isset($backend)) { $backend = ''; }
210if ($abook->numbackends > 1) {
39bfea8f 211 echo '<strong>' . _("in") . '</strong>&nbsp;';
91e0dccc 212
213 $selopts['-1'] = _("All address books");
00a065a6 214 $ret = $abook->get_backend_list();
91e0dccc 215
00a065a6 216 while (list($undef,$v) = each($ret)) {
39bfea8f 217 $selopts[$v->bnum] = $v->sname;
00a065a6 218 }
62366261 219 echo addSelect('backend', $selopts, $backend, TRUE);
00a065a6 220} else {
62366261 221 echo addHidden('backend', '-1');
00a065a6 222}
6a12032e 223if (isset($session)) {
62366261 224 echo addHidden('session', $session);
6a12032e 225}
226
39bfea8f 227echo '<input type="submit" value="' . _("Search") . '" />' .
228 '&nbsp;|&nbsp;<input type="submit" value="' . _("List all") .
229 '" name="listall" />' . "\n" .
230 '</form></center></td></tr></table>' . "\n";
00a065a6 231addr_insert_hidden();
7b783475 232echo '</center>';
00a065a6 233do_hook('addrbook_html_search_below');
234/* End search form */
235
236/* Show personal addressbook */
cc99433e 237
238if ( !empty( $listall ) ){
239 $addrquery = '*';
240}
241
242if ($addrquery == '' && empty($listall)) {
00a065a6 243
244 if (! isset($backend) || $backend != -1 || $addrquery == '') {
245 if ($addrquery == '') {
6e79bfe2 246 $backend = $abook->localbackend;
00a065a6 247 }
14f1b90b 248
39bfea8f 249 /* echo '<h3 align="center">' . $abook->backends[$backend]->sname) . "</h3>\n"; */
14f1b90b 250
00a065a6 251 $res = $abook->list_addr($backend);
14f1b90b 252
00a065a6 253 if (is_array($res)) {
a10110a5 254 usort($res,'alistcmp');
6e79bfe2 255 addr_display_result($res, false);
00a065a6 256 } else {
39bfea8f 257 echo html_tag( 'p', '<strong><br />' .
91e0dccc 258 sprintf(_("Unable to list addresses from %s"),
7b783475 259 $abook->backends[$backend]->sname) . "</strong>\n" ,
260 'center' );
00a065a6 261 }
262
263 } else {
264 $res = $abook->list_addr();
a10110a5 265 usort($res,'alistcmp');
00a065a6 266 addr_display_result($res, true);
267 }
268 exit;
cc99433e 269}
270else {
00a065a6 271
272 /* Do the search */
db48e3f5 273 if (!empty($addrquery)) {
00a065a6 274
275 if ($backend == -1) {
276 $res = $abook->s_search($addrquery);
277 } else {
278 $res = $abook->s_search($addrquery, $backend);
279 }
280
281 if (!is_array($res)) {
39bfea8f 282 echo html_tag( 'p', '<b><br />' .
7b783475 283 _("Your search failed with the following error(s)") .
39bfea8f 284 ':<br />' . $abook->error . "</b>\n" ,
dcc1cc82 285 'center' ) .
39bfea8f 286 "\n</body></html>\n";
00a065a6 287 } else {
288 if (sizeof($res) == 0) {
39bfea8f 289 echo html_tag( 'p', '<br /><b>' .
62366261 290 _("No persons matching your search were found") . "</b>\n" ,
dcc1cc82 291 'center' ) .
39bfea8f 292 "\n</body></html>\n";
00a065a6 293 } else {
294 addr_display_result($res);
295 }
296 }
297 }
298}
299
300if ($addrquery == '' || sizeof($res) == 0) {
39bfea8f 301 /* printf('<center><form method="post" name="k" action="compose.php">'."\n", $PHP_SELF); */
62366261 302 echo '<center>'.
c435f076 303 addForm('compose.php','post','k');
00a065a6 304 addr_insert_hidden();
39bfea8f 305 echo '<input type="submit" value="' . _("Return") . '" name="return" />' . "\n" .
00a065a6 306 '</form></center></nobr>';
307}
6e79bfe2 308
dcc1cc82 309?>
1bb8fb4c 310</body></html>