* * -------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; either version 2 of the License, or (at your * * option) any later version. * \**************************************************************************/ /* $Id$ */ $phpgw_flags["currentapp"] = "addressbook"; include("../header.inc.php"); echo "
" . lang_addressbook("Address book"); if (! $start) $start = 0; $limit =$phpgw->nextmatchs->sql_limit($start); if ($order) $ordermethod = "order by $order $sort"; else $ordermethod = "order by lastname,firstname,email asc"; if (! $filter) { $filter = "none"; } if ($filter != "private") { if ($filter != "none") { $filtermethod = " access like '%,$filter,%' "; } else { $filtermethod = " (owner='" . $phpgw_info["user"]["userid"] ."' OR access='public' " . $phpgw->accounts->sql_search("access") . " ) "; } } else { $filtermethod = " owner='" . $phpgw_info["user"]["userid"] . "' "; } if ($query) { $phpgw->db->query("select count(*) from addressbook where $filtermethod AND (lastname " . "like '%$query%' OR firstname like '%$query%' OR email like '%$query%" . "' OR street like '%$query%' OR city like '%$query%' OR state like '" . "%$query%' OR zip like '%$query%' OR notes like '%$query%' OR company" . " like '%$query%')"); $phpgw->db->next_record(); if ($phpgw->db->f(0) == 1) echo "
" . lang_common("your search returned 1 match"); else echo "
" . lang_common("your search returned x matchs",$phpgw->db->f(0)); } else { $phpgw->db->query("select count(*) from addressbook where $filtermethod"); } $phpgw->db->next_record(); if ($phpgw->db->f(0) > $phpgw_info["user"]["preferences"]["maxmatchs"]) echo "
" . lang_common("showing x - x of x",($start + 1), ($start + $phpgw_info["user"]["preferences"]["maxmatchs"]),$phpgw->db->f(0)); else echo "
" . lang_common("showing x",$phpgw->db->f(0)); ?> nextmatchs->show("index.php",$start,$phpgw->db->f(0), "&order=$order&filter=$filter&sort=" . "$sort&query=$query", "75%", $phpgw_info["theme"][th_bg]); ?> "> db->query("SELECT * FROM addressbook WHERE $filtermethod AND (lastname like '" . "%$query%' OR firstname like '%$query%' OR email like '%$query%' OR " . "street like '%$query%' OR city like '%$query%' OR state " . "like '%$query%' OR zip like '%$query%' OR notes like " . "'%$query%' OR company like %$query%') $ordermethod limit $limit"); } else { $phpgw->db->query("SELECT * FROM addressbook WHERE $filtermethod $ordermethod limit " . $limit); } while ($phpgw->db->next_record()) { $tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color); $firstname = $phpgw->db->f("firstname"); $lastname = $phpgw->db->f("lastname"); $con = $phpgw->db->f("con"); /* This for for just showing the company name stored in lastname. */ if (($lastname) && (! $firstname)) $t_colspan = " colspan=2"; else { $t_colspan = ""; if ($firstname == "") $firstname = " "; if ($lastname == "") $lastname = " "; } ?> > $firstname "; ?>
nextmatchs->show_sort_order($sort,"lastname",$order,"index.php", lang_common("Last Name")); ?> "> nextmatchs->show_sort_order($sort,"firstname",$order,"index.php", lang_common("First Name")); ?>
> "> common->check_owner($phpgw->db->f("owner"),"edit.php",lang_common("edit"),"con=" . $phpgw->db->f("con")); ?>
">
">