2000-10-12 16:34:25 +02:00
|
|
|
<?php
|
2001-02-10 13:56:49 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Address Book *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2001-02-19 13:14:25 +01:00
|
|
|
$phpgw_info["flags"] = array(
|
|
|
|
"noheader" => True,
|
|
|
|
"nonavbar" => True,
|
|
|
|
"currentapp" => "addressbook",
|
2001-03-16 18:56:18 +01:00
|
|
|
"enable_contacts_class" => True,
|
2001-02-19 13:14:25 +01:00
|
|
|
"enable_nextmatchs_class" => True
|
|
|
|
);
|
2000-11-16 23:03:49 +01:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
include("../header.inc.php");
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
$this = CreateObject("phpgwapi.contacts");
|
2001-03-16 02:31:25 +01:00
|
|
|
|
2001-02-19 13:51:38 +01:00
|
|
|
$extrafields = array(
|
2001-02-19 14:16:07 +01:00
|
|
|
"ophone" => "ophone",
|
2001-02-19 13:51:38 +01:00
|
|
|
"address2" => "address2",
|
2001-03-16 02:31:25 +01:00
|
|
|
"address3" => "address3"
|
2001-02-19 13:51:38 +01:00
|
|
|
);
|
2001-03-16 02:31:25 +01:00
|
|
|
|
2001-03-16 18:56:18 +01:00
|
|
|
$phpgw->preferences->read_repository();
|
|
|
|
$customfields = array();
|
|
|
|
if ($phpgw_info["user"]["preferences"]["addressbook"]) {
|
|
|
|
while (list($col,$descr) = each($phpgw_info["user"]["preferences"]["addressbook"])) {
|
|
|
|
if ( substr($col,0,6) == 'extra_' ) {
|
|
|
|
$field = ereg_replace('extra_','',$col);
|
|
|
|
$customfields[$field] = ucfirst($field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$qfields = $this->stock_contact_fields + $extrafields + $customfields;
|
2001-02-19 13:51:38 +01:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
if ($submit) {
|
|
|
|
$totalerrors = 0;
|
|
|
|
if (! count($ab_selected)) {
|
|
|
|
$errors[$totalerrors++] = lang("You must select at least 1 column to display");
|
|
|
|
}
|
|
|
|
if (! $totalerrors) {
|
|
|
|
$phpgw->preferences->read_repository();
|
2001-02-19 14:16:07 +01:00
|
|
|
while (list($pref[0]) = each($qfields)) {
|
2001-02-10 13:56:49 +01:00
|
|
|
if ($ab_selected["$pref[0]"]) {
|
|
|
|
$phpgw->preferences->change("addressbook",$pref[0],"addressbook_" . $ab_selected["$pref[0]"]);
|
|
|
|
} else {
|
|
|
|
$phpgw->preferences->delete("addressbook",$pref[0],"addressbook_" . $ab_selected["$pref[0]"]);
|
|
|
|
}
|
|
|
|
}
|
2000-12-31 23:58:41 +01:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
if ($mainscreen_showbirthdays) {
|
|
|
|
$phpgw->preferences->delete("addressbook","mainscreen_showbirthdays");
|
|
|
|
$phpgw->preferences->add("addressbook","mainscreen_showbirthdays");
|
|
|
|
} else {
|
|
|
|
$phpgw->preferences->delete("addressbook","mainscreen_showbirthdays");
|
|
|
|
}
|
2000-12-13 16:19:03 +01:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
$phpgw->preferences->save_repository(True);
|
2001-03-08 15:07:26 +01:00
|
|
|
Header("Location: " . $phpgw->link("/preferences/index.php"));
|
2001-02-10 13:56:49 +01:00
|
|
|
}
|
|
|
|
}
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
$phpgw->common->phpgw_header();
|
|
|
|
echo parse_navbar();
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
if ($totalerrors) {
|
|
|
|
echo "<p><center>" . $phpgw->common->error_list($errors) . "</center>";
|
|
|
|
}
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
echo "<p><b>" . lang("Addressbook preferences") . ":" . "</b><hr><p>";
|
2000-10-12 16:34:25 +02:00
|
|
|
?>
|
2001-03-08 15:07:26 +01:00
|
|
|
<form method="POST" action="<?php echo $phpgw->link('/addressbook/preferences.php'); ?>">
|
2000-10-23 21:16:20 +02:00
|
|
|
<table border="0" align="center" cellspacing="1" cellpadding="1">
|
2000-10-12 16:34:25 +02:00
|
|
|
<?php
|
2001-02-10 13:56:49 +01:00
|
|
|
// I need to create a common function to handle displaying multiable columns
|
2000-10-12 16:34:25 +02:00
|
|
|
|
2001-02-10 13:56:49 +01:00
|
|
|
echo "<tr bgcolor=\"" . $phpgw_info["theme"]["th_bg"] . "\"><td colspan=\"3\"> </td></tr>\n";
|
|
|
|
$i = 0; $j = 0;
|
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
echo "<tr bgcolor=\"" . $tr_color . "\">\n";
|
2001-02-19 13:51:38 +01:00
|
|
|
while (list($col, $descr) = each($qfields)) {
|
2001-02-10 13:56:49 +01:00
|
|
|
// echo "<br>test: $col - $i $j - " . count($abc);
|
|
|
|
$i++; $j++;
|
2001-03-22 00:57:30 +01:00
|
|
|
$showcol = display_name($col);
|
|
|
|
if (!$showcol) { $showcol = $col; }
|
2001-02-19 13:51:38 +01:00
|
|
|
// yank the *'s prior to testing for a valid column description
|
|
|
|
$coltest = ereg_replace("\*","",$showcol);
|
|
|
|
if ($coltest) {
|
2001-02-10 13:56:49 +01:00
|
|
|
echo "\t<td><input type=\"checkbox\" name=\"ab_selected[" . $col . "]\" value=\"True\""
|
2001-02-19 13:51:38 +01:00
|
|
|
. ($phpgw_info["user"]["preferences"]["addressbook"][$col]?" checked":"") . '>' . $showcol
|
2001-02-10 13:56:49 +01:00
|
|
|
. "</option></td>\n";
|
|
|
|
} else {
|
|
|
|
$i--;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if ($i == 3) {
|
|
|
|
echo "</tr>\n";
|
|
|
|
$i = 0;
|
|
|
|
}
|
2001-02-19 13:51:38 +01:00
|
|
|
if ($i == 0 && $coltest) {
|
2001-02-10 13:56:49 +01:00
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
echo "<tr bgcolor=\"" . $tr_color . "\">\n";
|
|
|
|
}
|
2001-02-19 13:51:38 +01:00
|
|
|
if ($j == count($qfields)) {
|
2001-02-10 13:56:49 +01:00
|
|
|
if ($i == 1) {
|
|
|
|
echo "\t<td> </td><td> </td>\n";
|
|
|
|
}
|
|
|
|
if ($i == 2) {
|
|
|
|
echo "\t<td> </td>\n";
|
|
|
|
}
|
|
|
|
echo "</tr>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
2000-10-12 16:34:25 +02:00
|
|
|
?>
|
2000-10-23 21:16:20 +02:00
|
|
|
<tr bgcolor="<?php echo $tr_color; ?>">
|
2000-10-25 23:09:00 +02:00
|
|
|
<td colspan="2"><?php echo lang("show birthday reminders on main screen"); ?></td>
|
2000-10-23 21:16:20 +02:00
|
|
|
<td><input type="checkbox" name="mainscreen_showbirthdays" value="True"<?php if ($phpgw_info["user"]["preferences"]["addressbook"]["mainscreen_showbirthdays"]) echo " checked"; ?>></td>
|
|
|
|
</tr>
|
2000-10-12 16:34:25 +02:00
|
|
|
<tr>
|
|
|
|
<td colspan="3" align="center">
|
|
|
|
<input type="submit" name="submit" value="<?php echo lang("submit"); ?>">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<?php
|
2001-02-10 13:56:49 +01:00
|
|
|
$phpgw->common->phpgw_footer();
|
2000-11-16 23:03:49 +01:00
|
|
|
?>
|