X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Faddrbook_search.php;h=e7947ab79b8ec448e24a9fdceaf87a20d323e419;hb=d04cab4213efb37756cced1d8dcbb8bd22280ac2;hp=7fd7ee8e44eec45c7ffa7b13e5f6be48404771d7;hpb=4e16023756d809ccfee02e1c7743c90ac7ba9d0f;p=squirrelmail.git diff --git a/src/addrbook_search.php b/src/addrbook_search.php index 7fd7ee8e..e7947ab7 100644 --- a/src/addrbook_search.php +++ b/src/addrbook_search.php @@ -3,7 +3,7 @@ /** * addrbook_search.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2005 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Handle addressbook searching in the popup window. @@ -12,17 +12,42 @@ * addrbook_search_html.html -- If you change one, * change the other one too! * - * $Id$ + * @version $Id$ + * @package squirrelmail + * @subpackage addressbook */ -require_once('../src/validate.php'); -require_once('../functions/strings.php'); -require_once('../functions/html.php'); +/** + * Path for SquirrelMail required files. + * @ignore + */ +define('SM_PATH','../'); + +/** SquirrelMail required files. */ +require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/strings.php'); +require_once(SM_PATH . 'functions/global.php'); +require_once(SM_PATH . 'functions/html.php'); +require_once(SM_PATH . 'functions/forms.php'); -/* Function to include JavaScript code */ +/** lets get the global vars we may need */ +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION); +sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION); + +sqgetGlobalVar('show' , $show); +sqgetGlobalVar('query', $query, SQ_POST); +sqgetGlobalVar('listall', $listall, SQ_POST); +sqgetGlobalVar('backend', $backend, SQ_POST); + +/** + * Function to include JavaScript code + * @return void + */ function insert_javascript() { ?> - +// --> \n"; - + while (list($undef, $row) = each($res)) { - $tr_bgcolor = ''; $email = htmlspecialchars(addcslashes(AddressBook::full_address($row), "'"), ENT_QUOTES); - if ($line % 2) { $tr_bgcolor = $color[0]; } - echo html_tag( 'tr', '', '', $tr_bgcolor, 'nowrap' ) . + if ($line % 2) { + $tr_bgcolor = $color[12]; + } else { + $tr_bgcolor = $color[4]; + } + echo html_tag( 'tr', '', '', $tr_bgcolor, 'style="white-space: nowrap;"' ) . html_tag( 'td', - 'To | " . - 'Cc | " . - 'Bcc", - 'center', '', 'valign="top" width="5%" nowrap' ) . - html_tag( 'td', ' ' . htmlspecialchars($row['name']), 'left', '', 'valign="top" nowrap' ) . + '"._("To")." | " . + '"._("Cc")." | " . + '"._("Bcc")."", + 'center', '', 'valign="top" width="5%" style="white-space: nowrap;"' ) . + html_tag( 'td', ' ' . htmlspecialchars($row['name']), 'left', '', 'valign="top" style="white-space: nowrap;"' ) . html_tag( 'td', ' ' . '" . htmlspecialchars($row['email']) . '' + "'" . $email . "');\">" . htmlspecialchars($row['email']) . '' , 'left', '', 'valign="top"' ) . - html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" nowrap' ); + html_tag( 'td', htmlspecialchars($row['label']), 'left', '', 'valign="top" style="white-space: nowrap;"' ); if ($includesource) { - echo html_tag( 'td', ' ' . $row['source'], 'left', '', 'valign="top" nowrap' ); + echo html_tag( 'td', ' ' . $row['source'], 'left', '', 'valign="top" style="white-space: nowrap;"' ); } echo "\n"; @@ -136,13 +169,16 @@ function display_result($res, $includesource = true) { } /* ================= End of functions ================= */ - -require_once('../functions/array.php'); + require_once('../functions/strings.php'); require_once('../functions/addressbook.php'); - + displayHtmlHeader(); - + +/** set correct value of $default_charset */ +global $default_charset; +set_my_charset(); + /* Initialize vars */ if (!isset($query)) { $query = ''; } if (!isset($show)) { $show = ''; } @@ -150,22 +186,22 @@ if (!isset($backend)) { $backend = ''; } /* Choose correct colors for top and bottom frame */ if ($show == 'form' && !isset($listall)) { - echo ''; } else { - echo '\n"; + echo '\n"; } /* Empty search */ if (empty($query) && empty($show) && empty($listall)) { - echo html_tag( 'p', '
' . - _("No persons matching your search was found"), + echo html_tag( 'p', '
' . + _("No persons matching your search were found"), 'center' ) . - "\n\n", + "\n\n"; exit; } @@ -174,37 +210,37 @@ $abook = addressbook_init(); /* Create search form */ if ($show == 'form' && empty($listall)) { - echo '
' . "\n" . + echo '' . "\n" . html_tag( 'table', '', '', '', 'border="0" width="100%" height="100%"' ) . html_tag( 'tr' ) . - html_tag( 'td', ' ' . _("Search for") . "\n", 'left', '', 'nowrap valign="middle" width="10%"' ) . + html_tag( 'td', ' ' . _("Search for") . "\n", 'left', '', 'style="white-space: nowrap;" valign="middle" width="10%"' ) . html_tag( 'td', '', 'left', '', '' ) . - '\n"; + addInput('query', $query, 28); /* List all backends to allow the user to choose where to search */ if ($abook->numbackends > 1) { - echo '' . _("in") . ' \n"; + echo addSelect('backend', $selopts, '-1', TRUE); } else { - echo '' . "\n"; + echo addHidden('backend', '-1'); } - + echo '' . html_tag( 'tr', html_tag( 'td', '', 'left' ) . html_tag( 'td', - '' . - ' | ' . "\n" . - ' | ' . "\n" , + '' . + ' | ' . "\n" . + ' | ' . "\n" , 'left' ) ) . '
' . "\n"; @@ -241,36 +277,34 @@ if ($show == 'form' && empty($listall)) { /* Do the search */ if (!empty($query)) { - + if($backend == -1) { $res = $abook->s_search($query); } else { $res = $abook->s_search($query, $backend); } - + if (!is_array($res)) { - echo html_tag( 'p', '
' . + echo html_tag( 'p', '
' . _("Your search failed with the following error(s)") . - ':
' . $abook->error . "
\n" , + ':
' . $abook->error . "
\n" , 'center' ) . - "\n\n"; + "\n\n"; exit; } - + if (sizeof($res) == 0) { - echo html_tag( 'p', '
' . - _("No persons matching your search was found") . "\n" , + echo html_tag( 'p', '
' . + _("No persons matching your search were found") . "\n" , 'center' ) . - "\n\n"; + "\n\n"; exit; } - + display_result($res); } } - -} -echo "\n"; - +} ?> + \ No newline at end of file