X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Faddrbook_search.php;h=14a2f477599c7b45e644a692f5f3b73ce4933b20;hb=4a9f606333513eea3a56e772bd4a1338c492396f;hp=1c172079dcc0ed3c81eee8f52dbdd097b060a74e;hpb=dfadb5533df0c17fa7737d4aaf5738064b55429e;p=squirrelmail.git diff --git a/src/addrbook_search.php b/src/addrbook_search.php index 1c172079..14a2f477 100644 --- a/src/addrbook_search.php +++ b/src/addrbook_search.php @@ -1,188 +1,144 @@ - - - - -<?php - printf("%s: %s", $org_title, _("Address Book")); -?> - +/** + * addrbook_search.php + * + * Handle addressbook searching in the popup window. + * + * NOTE: A lot of this code is similar to the code in + * addrbook_search_html.html -- If you change one, + * change the other one too! + * + * @copyright © 1999-2007 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail + * @subpackage addressbook + */ + +/** This is the addrbook_search page */ +define('PAGE_NAME', 'addrbook_search'); + +/** + * Include the SquirrelMail initialization file. + */ +require('../include/init.php'); + +include_once(SM_PATH . 'functions/forms.php'); +include_once(SM_PATH . 'functions/addressbook.php'); +include_once(SM_PATH . 'templates/util_addressbook.php'); + +/** + * List search results + * @param array $res Array of search results + * @param bool $includesource [Default=true] + * @return void + */ +function display_result($res, $includesource = true) { + global $oTemplate, $oErrorHandler; + + if(sizeof($res) <= 0) return; + + $oTemplate->assign('use_js', true); + $oTemplate->assign('include_abook_name', $includesource); + $oTemplate->assign('addresses', formatAddressList($res)); + + $oTemplate->display('addrbook_search_list.tpl'); +} -"; - } else { - echo "\n"; - } - - // Just make a blank page and exit - if(($show == "blank") || (empty($query) && empty($show))) { - printf("


%s

\n\n", - _("Search results will display here")); - exit; - } - - // Create search form - if($show == "form") { - printf("
\n", - $PHP_SELF); - printf(""); - printf("
\n"); - printf(" %s:\n\n", - _("Search for")); - printf(" \n", - htmlspecialchars($query)); - printf("\n"); - printf(" ", - _("Search")); - printf("\n"); - printf("\n", - _("Close window")); - printf("
\n"); - } - - // Include JavaScript code if this is search results - if(!empty($query)) { -?> - - -s_search($query); - - if(!is_array($res)) { - printf("


%s:
%s

\n\n", - _("Your search failed with the following error(s)"), - $abook->error); - exit; - } - - if(sizeof($res) == 0) { - printf("


%s.

\n\n", - _("No persons matching your search was found")); - exit; - } - - // List search results - $line = 0; - print ""; - printf("\n", - _("Name"), _("E-mail"), _("Info"), _("Source")); - - while(list($key, $row) = each($res)) { - printf("\n", - ($line % 2) ? " bgcolor=\"$color[0]\"" : "", $row["email"], - $row["email"], $row["name"], $row["email"], $row["label"], - $row["source"]); - $line++; - } - print "
 ". - " %s %s". - " %s". - " %s
". - "To | ". - "Cc". - " %s  %s ". - " %s  %s
"; - } -?> - - +$oTemplate->display('footer.tpl');