* * -------------------------------------------- * * 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$ */ if ($submit || ! $ab_id) { $phpgw_info["flags"] = array( "noheader" => True, "nonavbar" => True ); } $phpgw_info["flags"] = array( "currentapp" => "addressbook", "enable_contacts_class" => True, "enable_nextmatchs_class" => True); include("../header.inc.php"); $t = new Template($phpgw->common->get_tpl_dir("addressbook")); $t->set_file(array( "view" => "view.tpl")); $this = CreateObject("phpgwapi.contacts"); if (! $ab_id) { Header("Location: " . $phpgw->link("/addressbook/index.php")); } while ($column = each($this->stock_contact_fields)) { if (isset($phpgw_info["user"]["preferences"]["addressbook"][$column[0]]) && $phpgw_info["user"]["preferences"]["addressbook"][$column[0]]) { $columns_to_display[$column[0]] = True; $colname[$column[0]] = $column[1]; } } // No prefs? if (!$columns_to_display ) { $columns_to_display = array( "n_given" => "n_given", "n_family" => "n_family", "org_name" => "org_name" ); while ($column = each($columns_to_display)) { $colname[$column[0]] = $column[1]; } } // merge in extra fields $extrafields = array ( "pager" => "pager", "mphone" => "mphone", "ophone" => "ophone", "address2" => "address2", ); $qfields = $this->stock_contact_fields + $extrafields; $fields = addressbook_read_entry($ab_id,$qfields); $record_owner = $fields[0]["owner"]; $view_header = "
" . lang("Address book - view") . "
"; $view_header .= '
" . display_name($colname[$column[0]]) . ": | "; $ref=$data=""; $coldata = $fields[0][$column[0]]; // Some fields require special formatting. if ($column[0] == "url") { $ref=''; $data=$coldata.''; } elseif ($column[0] == "email") { if ($phpgw_info["user"]["apps"]["email"]) { $ref=''; } else { $ref=''; } $data=$coldata.""; } else { // But these do not $ref=""; $data=$coldata; } $columns_html .= "" . $ref . $data . " | "; } /* if ($access == "private") { $access_link .= lang("Record Access") . " - " . $access; } elseif ($access != "private" && $access != "public") { $access_link .= lang("Group access") . " - " . $phpgw->accounts->convert_string_to_names_access($access); } else { $access_link =""; } */ $columns_html .= '||
' . lang("Record owner") . ' | ' . $phpgw->common->grab_owner_name($record_owner) . ' | ' . $access_link . ' |