2001-07-08 15:54:40 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Addressbook *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* Written by Joseph Engo <jengo@phpgroupware.org> and *
|
|
|
|
* Miles Lott <miloschphpgroupware.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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
class uiaddressbook
|
|
|
|
{
|
|
|
|
var $template;
|
|
|
|
var $contacts;
|
|
|
|
var $bo;
|
|
|
|
var $cat;
|
|
|
|
var $company;
|
|
|
|
var $prefs;
|
|
|
|
|
|
|
|
var $debug = False;
|
|
|
|
|
|
|
|
var $start;
|
|
|
|
var $limit;
|
|
|
|
var $query;
|
|
|
|
var $sort;
|
|
|
|
var $order;
|
|
|
|
var $filter;
|
|
|
|
var $cat_id;
|
|
|
|
|
|
|
|
var $template;
|
|
|
|
var $public_functions = array(
|
|
|
|
'get_list' => True,
|
|
|
|
'view' => True,
|
|
|
|
'add' => True,
|
2001-07-09 19:35:27 +02:00
|
|
|
'add_email' => True,
|
|
|
|
'copy' => True,
|
2001-07-12 06:09:12 +02:00
|
|
|
'edit' => True,
|
2001-07-13 11:03:31 +02:00
|
|
|
'delete' => True,
|
|
|
|
'preferences' => True
|
2001-07-08 15:54:40 +02:00
|
|
|
);
|
|
|
|
|
2001-09-20 05:55:57 +02:00
|
|
|
var $extrafields = array(
|
2001-07-08 15:54:40 +02:00
|
|
|
'ophone' => 'ophone',
|
|
|
|
'address2' => 'address2',
|
|
|
|
'address3' => 'address3'
|
|
|
|
);
|
|
|
|
|
|
|
|
function uiaddressbook()
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->country = CreateObject('phpgwapi.country');
|
|
|
|
$GLOBALS['phpgw']->browser = CreateObject('phpgwapi.browser');
|
|
|
|
$GLOBALS['phpgw']->nextmatchs = CreateObject('phpgwapi.nextmatchs');
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
$this->bo = CreateObject('addressbook.boaddressbook',True);
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template = $GLOBALS['phpgw']->template;
|
2001-07-12 03:01:11 +02:00
|
|
|
$this->contacts = CreateObject('phpgwapi.contacts');
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->cat = CreateObject('phpgwapi.categories');
|
|
|
|
$this->company = CreateObject('phpgwapi.categories','addressbook_company');
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->prefs = $GLOBALS['phpgw_info']['user']['preferences']['addressbook'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-09 20:06:03 +02:00
|
|
|
$this->start = $this->bo->start;
|
|
|
|
$this->limit = $this->bo->limit;
|
|
|
|
$this->query = $this->bo->query;
|
|
|
|
$this->sort = $this->bo->sort;
|
|
|
|
$this->order = $this->bo->order;
|
|
|
|
$this->filter = $this->bo->filter;
|
|
|
|
$this->cat_id = $this->bo->cat_id;
|
2001-07-08 15:54:40 +02:00
|
|
|
if($this->debug) { $this->_debug_sqsof(); }
|
2001-08-04 16:12:32 +02:00
|
|
|
/* _debug_array($this); */
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function _debug_sqsof()
|
|
|
|
{
|
|
|
|
$data = array(
|
|
|
|
'start' => $this->start,
|
|
|
|
'limit' => $this->limit,
|
|
|
|
'query' => $this->query,
|
|
|
|
'sort' => $this->sort,
|
|
|
|
'order' => $this->order,
|
|
|
|
'filter' => $this->filter,
|
|
|
|
'cat_id' => $this->cat_id
|
|
|
|
);
|
|
|
|
echo '<br>UI:';
|
|
|
|
_debug_array($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called only by get_list(), just prior to page footer. */
|
|
|
|
function save_sessiondata()
|
|
|
|
{
|
2001-07-12 06:09:12 +02:00
|
|
|
$data = array(
|
|
|
|
'start' => $this->start,
|
|
|
|
'limit' => $this->limit,
|
|
|
|
'query' => $this->query,
|
|
|
|
'sort' => $this->sort,
|
|
|
|
'order' => $this->order,
|
|
|
|
'filter' => $this->filter,
|
|
|
|
'cat_id' => $this->cat_id
|
|
|
|
);
|
|
|
|
$this->bo->save_sessiondata($data);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function formatted_list($name,$list,$id='',$default=False,$java=False)
|
|
|
|
{
|
|
|
|
if ($java)
|
|
|
|
{
|
|
|
|
$jselect = ' onChange="this.form.submit();"';
|
|
|
|
}
|
|
|
|
|
|
|
|
$select = "\n" .'<select name="' . $name . '"' . $jselect . ">\n";
|
|
|
|
if($default)
|
|
|
|
{
|
|
|
|
$select .= '<option value="">' . lang('Please Select') . '</option>'."\n";
|
|
|
|
}
|
|
|
|
while (list($key,$val) = each($list))
|
|
|
|
{
|
|
|
|
$select .= '<option value="' . $key . '"';
|
|
|
|
if ($key == $id && $id != '')
|
|
|
|
{
|
|
|
|
$select .= ' selected';
|
|
|
|
}
|
|
|
|
$select .= '>' . $val . '</option>'."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$select .= '</select>'."\n";
|
|
|
|
$select .= '<noscript><input type="submit" name="' . $name . '_select" value="True"></noscript>' . "\n";
|
|
|
|
|
|
|
|
return $select;
|
|
|
|
}
|
|
|
|
|
|
|
|
function read_custom_fields()
|
|
|
|
{
|
|
|
|
$fields = array();
|
|
|
|
@reset($this->prefs);
|
|
|
|
while (list($col,$descr) = @each($this->prefs))
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$tmp = '';
|
2001-07-08 15:54:40 +02:00
|
|
|
if ( substr($col,0,6) == 'extra_' )
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$tmp = ereg_replace('extra_','',$col);
|
|
|
|
$tmp = ereg_replace(' ','_',$tmp);
|
|
|
|
$fields[$tmp] = $tmp;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@reset($fields);
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
function save_custom_field($old='',$new='')
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->preferences->read_repository($GLOBALS['phpgw_info']['user']['account_id']);
|
2001-07-08 15:54:40 +02:00
|
|
|
if ($old)
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->preferences->delete('addressbook','extra_' . $old);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
if($new)
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->preferences->add('addressbook','extra_' . $new);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->preferences->save_repository(1);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a select form element with the categories option dialog in it */
|
|
|
|
function cat_option($cat_id='',$notall=False,$java=True,$multiple=False)
|
|
|
|
{
|
|
|
|
if ($java)
|
|
|
|
{
|
|
|
|
$jselect = ' onChange="this.form.submit();"';
|
|
|
|
}
|
|
|
|
/* Setup all and none first */
|
2001-07-10 22:20:45 +02:00
|
|
|
$cats_link = "\n" .'<select name="fcat_id'.($multiple?'[]':'').'"' .$jselect . ($multiple ? 'multiple size="3"' : '') . ">\n";
|
2001-07-08 15:54:40 +02:00
|
|
|
if (!$notall)
|
|
|
|
{
|
|
|
|
$cats_link .= '<option value=""';
|
|
|
|
if ($cat_id=="all")
|
|
|
|
{
|
|
|
|
$cats_link .= ' selected';
|
|
|
|
}
|
|
|
|
$cats_link .= '>'.lang("all").'</option>'."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get global and app-specific category listings */
|
|
|
|
$cats_link .= $this->cat->formated_list('select','all',$cat_id,True);
|
|
|
|
$cats_link .= '</select>'."\n";
|
|
|
|
return $cats_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this cleans up the fieldnames for display */
|
|
|
|
function display_name($column)
|
|
|
|
{
|
|
|
|
$abc = array(
|
|
|
|
'fn' => 'full name',
|
|
|
|
'sound' => 'Sound',
|
|
|
|
'org_name' => 'company name',
|
|
|
|
'org_unit' => 'department',
|
|
|
|
'title' => 'title',
|
|
|
|
'n_prefix' => 'prefix',
|
|
|
|
'n_given' => 'first name',
|
|
|
|
'n_middle' => 'middle name',
|
|
|
|
'n_family' => 'last name',
|
|
|
|
'n_suffix' => 'suffix',
|
|
|
|
'label' => 'label',
|
|
|
|
'adr_one_street' => 'business street',
|
|
|
|
'adr_one_locality' => 'business city',
|
|
|
|
'adr_one_region' => 'business state',
|
|
|
|
'adr_one_postalcode' => 'business zip code',
|
|
|
|
'adr_one_countryname' => 'business country',
|
|
|
|
'adr_one_type' => 'business address type',
|
|
|
|
'adr_two_street' => 'home street',
|
|
|
|
'adr_two_locality' => 'home city',
|
|
|
|
'adr_two_region' => 'home state',
|
|
|
|
'adr_two_postalcode' => 'home zip code',
|
|
|
|
'adr_two_countryname' => 'home country',
|
|
|
|
'adr_two_type' => 'home address type',
|
|
|
|
'tz' => 'time zone',
|
|
|
|
'geo' => 'geo',
|
|
|
|
'tel_work' => 'business phone',
|
|
|
|
'tel_home' => 'home phone',
|
|
|
|
'tel_voice' => 'voice phone',
|
|
|
|
'tel_msg' => 'message phone',
|
|
|
|
'tel_fax' => 'fax',
|
|
|
|
'tel_pager' => 'pager',
|
|
|
|
'tel_cell' => 'mobile phone',
|
|
|
|
'tel_bbs' => 'bbs phone',
|
|
|
|
'tel_modem' => 'modem phone',
|
|
|
|
'tel_isdn' => 'isdn phone',
|
|
|
|
'tel_car' => 'car phone',
|
|
|
|
'tel_video' => 'video phone',
|
|
|
|
'tel_prefer' => 'preferred phone',
|
|
|
|
'email' => 'business email',
|
|
|
|
'email_type' => 'business email type',
|
|
|
|
'email_home' => 'home email',
|
|
|
|
'email_home_type' => 'home email type',
|
|
|
|
'address2' => 'address line 2',
|
|
|
|
'address3' => 'address line 3',
|
|
|
|
'ophone' => 'Other Phone',
|
|
|
|
'bday' => 'birthday',
|
|
|
|
'url' => 'url',
|
|
|
|
'pubkey' => 'public key',
|
|
|
|
'note' => 'notes'
|
|
|
|
);
|
2001-09-20 05:55:57 +02:00
|
|
|
|
2001-07-08 15:54:40 +02:00
|
|
|
if ($abc[$column])
|
|
|
|
{
|
|
|
|
return lang($abc[$column]);
|
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
return;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Former index.php
|
|
|
|
*/
|
|
|
|
function get_list()
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-08 15:54:40 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
|
|
|
|
$this->template->set_file(array('addressbook_list_t' => 'index.tpl'));
|
|
|
|
$this->template->set_block('addressbook_list_t','addressbook_header','addressbook_header');
|
|
|
|
$this->template->set_block('addressbook_list_t','column','column');
|
|
|
|
$this->template->set_block('addressbook_list_t','row','row');
|
|
|
|
$this->template->set_block('addressbook_list_t','addressbook_footer','addressbook_footer');
|
|
|
|
|
|
|
|
$customfields = $this->read_custom_fields();
|
|
|
|
|
|
|
|
if (!isset($this->cat_id))
|
|
|
|
{
|
|
|
|
$this->cat_id = $this->prefs['default_category'];
|
|
|
|
}
|
|
|
|
if ($this->prefs['autosave_category'])
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->preferences->read_repository();
|
|
|
|
$GLOBALS['phpgw']->preferences->delete('addressbook','default_category');
|
|
|
|
$GLOBALS['phpgw']->preferences->add('addressbook','default_category',$this->cat_id);
|
|
|
|
$GLOBALS['phpgw']->preferences->save_repository();
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* $qfields = $contacts->stock_contact_fields + $extrafields + $customfields; */
|
|
|
|
/* create column list and the top row of the table based on user prefs */
|
|
|
|
while ($column = each($this->contacts->stock_contact_fields))
|
|
|
|
{
|
|
|
|
$test = strtolower($column[0]);
|
|
|
|
if (isset($this->prefs[$test]) && $this->prefs[$test])
|
|
|
|
{
|
|
|
|
$showcol = $this->display_name($column[0]);
|
|
|
|
$cols .= ' <td height="21">' . "\n";
|
|
|
|
$cols .= ' <font size="-1" face="Arial, Helvetica, sans-serif">';
|
2001-08-27 11:52:35 +02:00
|
|
|
$cols .= $GLOBALS['phpgw']->nextmatchs->show_sort_order($this->sort,
|
|
|
|
$column[0],$this->order,'/index.php',$showcol,'&menuaction=addressbook.uiaddressbook.get_list');
|
2001-07-08 15:54:40 +02:00
|
|
|
$cols .= "</font>\n </td>";
|
|
|
|
$cols .= "\n";
|
|
|
|
|
|
|
|
/* To be used when displaying the rows */
|
|
|
|
$columns_to_display[$column[0]] = True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Setup the columns for non-standard fields, since we don't allow sorting */
|
|
|
|
$nonstd = $this->extrafields + $customfields;
|
|
|
|
while ($column = each($nonstd))
|
|
|
|
{
|
|
|
|
$test = strtolower($column[1]);
|
|
|
|
if (isset($this->prefs[$test]) && $this->prefs[$test])
|
|
|
|
{
|
|
|
|
$showcol = $this->display_name($column[0]);
|
|
|
|
/* This must be a custom field */
|
|
|
|
if (!$showcol) { $showcol = $column[1]; }
|
|
|
|
$cols .= ' <td height="21">' . "\n";
|
|
|
|
$cols .= ' <font size="-1" face="Arial, Helvetica, sans-serif">';
|
|
|
|
$cols .= $showcol;
|
|
|
|
$cols .= "</font>\n </td>";
|
|
|
|
$cols .= "\n";
|
|
|
|
|
|
|
|
/* To be used when displaying the rows */
|
|
|
|
$columns_to_display[$column[0]] = True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Check if prefs were set, if not, create some defaults */
|
|
|
|
if (!$columns_to_display )
|
|
|
|
{
|
|
|
|
$columns_to_display = array(
|
|
|
|
'n_given' => 'n_given',
|
|
|
|
'n_family' => 'n_family',
|
|
|
|
'org_name' => 'org_name'
|
|
|
|
);
|
|
|
|
$columns_to_display = $columns_to_display + $customfields;
|
2001-08-27 11:52:35 +02:00
|
|
|
/* No prefs,. so cols above may have been set to '' or a bunch of <td></td> */
|
2001-07-08 15:54:40 +02:00
|
|
|
$cols='';
|
|
|
|
while ($column = each($columns_to_display))
|
|
|
|
{
|
|
|
|
$showcol = $this->display_name($column[0]);
|
|
|
|
if (!$showcol) { $showcol = $column[1]; }
|
|
|
|
$cols .= ' <td height="21">' . "\n";
|
|
|
|
$cols .= ' <font size="-1" face="Arial, Helvetica, sans-serif">';
|
2001-08-27 11:52:35 +02:00
|
|
|
$cols .= $GLOBALS['phpgw']->nextmatchs->show_sort_order($this->sort,
|
2001-07-12 03:13:07 +02:00
|
|
|
$column[0],$this->order,"/index.php",$showcol,'&menuaction=addressbook.uiaddressbook.get_list&cat_id='.$this->cat_id);
|
2001-07-08 15:54:40 +02:00
|
|
|
$cols .= "</font>\n </td>";
|
|
|
|
$cols .= "\n";
|
|
|
|
}
|
2001-09-03 12:53:19 +02:00
|
|
|
$noprefs=lang('Please set your preferences for this application');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->start)
|
|
|
|
{
|
|
|
|
$this->start = 0;
|
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if($GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'] &&
|
|
|
|
$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'] > 0)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->limit = $GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->limit = 30;
|
|
|
|
}
|
|
|
|
|
2001-09-20 05:55:57 +02:00
|
|
|
/*global $filter; */
|
2001-08-25 01:35:27 +02:00
|
|
|
if (empty($this->filter) || !isset($this->filter))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
if($this->prefs['default_filter'])
|
|
|
|
{
|
|
|
|
$this->filter = $this->prefs['default_filter'];
|
|
|
|
$this->query = '';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->filter = 'none';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Set qfilter to display entries where tid=n (normal contact entry),
|
|
|
|
else they may be accounts, etc.
|
|
|
|
*/
|
|
|
|
$qfilter = 'tid=n';
|
|
|
|
switch ($this->filter)
|
|
|
|
{
|
|
|
|
case 'blank':
|
|
|
|
$nosearch = True;
|
|
|
|
break;
|
|
|
|
case 'none':
|
|
|
|
break;
|
|
|
|
case 'private':
|
2001-09-20 05:55:57 +02:00
|
|
|
$qfilter .= ',access=private'; /* fall through */
|
2001-07-08 15:54:40 +02:00
|
|
|
case 'yours':
|
2001-08-27 11:52:35 +02:00
|
|
|
$qfilter .= ',owner=' . $GLOBALS['phpgw_info']['user']['account_id'];
|
2001-07-08 15:54:40 +02:00
|
|
|
break;
|
|
|
|
default:
|
2001-08-27 11:52:35 +02:00
|
|
|
$qfilter .= ',owner=' . $this->filter;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
if ($this->cat_id)
|
|
|
|
{
|
|
|
|
$qfilter .= ',cat_id='.$this->cat_id;
|
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if (!$userid)
|
|
|
|
{
|
|
|
|
$userid = $GLOBALS['phpgw_info']['user']['account_id'];
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
if ($nosearch && !$this->query)
|
|
|
|
{
|
|
|
|
$entries = array();
|
2001-07-12 03:01:11 +02:00
|
|
|
$total_records = 0;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* read the entry list */
|
2001-08-09 02:19:28 +02:00
|
|
|
$entries = $this->bo->read_entries(array(
|
|
|
|
'start' => $this->start,
|
|
|
|
'limit' => $this->limit,
|
|
|
|
'fields' => $columns_to_display,
|
2001-08-23 08:57:37 +02:00
|
|
|
'filter' => $qfilter,
|
|
|
|
'query' => $this->query,
|
|
|
|
'sort' => $this->sort,
|
|
|
|
'order' => $this->order
|
2001-08-09 02:19:28 +02:00
|
|
|
));
|
2001-07-12 03:01:11 +02:00
|
|
|
$total_records = $this->bo->total;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-08-25 01:35:27 +02:00
|
|
|
/* global here so nextmatchs accepts our setting of $query and $filter */
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['query'] = $this->query;
|
|
|
|
$GLOBALS['filter'] = $this->filter;
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$search_filter = $GLOBALS['phpgw']->nextmatchs->show_tpl('/index.php',
|
2001-09-28 23:27:41 +02:00
|
|
|
$this->start, $total_records,'&menuaction=addressbook.uiaddressbook.get_list&fcat_id='.$this->cat_id,'75%',
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw_info']['theme']['th_bg'],1,1,1,1,$this->cat_id);
|
2001-08-25 01:35:27 +02:00
|
|
|
$query = $filter = '';
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$lang_showing = $GLOBALS['phpgw']->nextmatchs->show_hits($total_records,$this->start);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
/* set basic vars and parse the header */
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('font',$GLOBALS['phpgw_info']['theme']['font']);
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_view',lang('View'));
|
|
|
|
$this->template->set_var('lang_vcard',lang('VCard'));
|
|
|
|
$this->template->set_var('lang_edit',lang('Edit'));
|
|
|
|
$this->template->set_var('lang_owner',lang('Owner'));
|
|
|
|
|
|
|
|
$this->template->set_var('searchreturn',$noprefs . ' ' . $searchreturn);
|
|
|
|
$this->template->set_var('lang_showing',$lang_showing);
|
|
|
|
$this->template->set_var('search_filter',$search_filter);
|
|
|
|
$this->template->set_var('cats',lang('Category'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('cats_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
2001-08-05 15:21:35 +02:00
|
|
|
/* $this->template->set_var('cats_link',$this->cat_option($this->cat_id)); */
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_cats',lang('Select'));
|
|
|
|
$this->template->set_var('lang_addressbook',lang('Address book'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
|
|
|
|
$this->template->set_var('th_font',$GLOBALS['phpgw_info']['theme']['font']);
|
|
|
|
$this->template->set_var('th_text',$GLOBALS['phpgw_info']['theme']['th_text']);
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_add',lang('Add'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('add_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.add'));
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_addvcard',lang('AddVCard'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('vcard_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uivcard.in'));
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_import',lang('Import Contacts'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('import_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.import'));
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_import_alt',lang('Alt. CSV Import'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('import_alt_url',$GLOBALS['phpgw']->link('/addressbook/csv_import.php'));
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('lang_export',lang('Export Contacts'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('export_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
$this->template->set_var('start',$this->start);
|
|
|
|
$this->template->set_var('sort',$this->sort);
|
|
|
|
$this->template->set_var('order',$this->order);
|
|
|
|
$this->template->set_var('filter',$this->filter);
|
|
|
|
$this->template->set_var('query',$this->query);
|
|
|
|
$this->template->set_var('cat_id',$this->cat_id);
|
|
|
|
|
|
|
|
$this->template->set_var('qfield',$qfield);
|
|
|
|
$this->template->set_var('cols',$cols);
|
|
|
|
|
|
|
|
$this->template->pparse('out','addressbook_header');
|
|
|
|
|
|
|
|
/* Show the entries */
|
|
|
|
/* each entry */
|
|
|
|
for ($i=0;$i<count($entries);$i++)
|
|
|
|
{
|
|
|
|
$this->template->set_var('columns','');
|
2001-08-27 11:52:35 +02:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
2001-07-08 15:54:40 +02:00
|
|
|
$this->template->set_var('row_tr_color',$tr_color);
|
|
|
|
$myid = $entries[$i]['id'];
|
|
|
|
$myowner = $entries[$i]['owner'];
|
|
|
|
|
|
|
|
/* each entry column */
|
2001-07-13 17:05:50 +02:00
|
|
|
@reset($columns_to_display);
|
|
|
|
while ($column = @each($columns_to_display))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
|
|
|
$ref = $data='';
|
|
|
|
$coldata = $entries[$i][$column[0]];
|
2001-07-13 17:05:50 +02:00
|
|
|
/* echo '<br>coldata="' . $coldata . '"'; */
|
2001-07-08 15:54:40 +02:00
|
|
|
/* Some fields require special formatting. */
|
|
|
|
if ($column[0] == 'url')
|
|
|
|
{
|
|
|
|
if ( !empty($coldata) && (substr($coldata,0,7) != 'http://') ) { $coldata = 'http://' . $coldata; }
|
|
|
|
$ref='<a href="'.$coldata.'" target="_new">';
|
|
|
|
$data=$coldata.'</a>';
|
|
|
|
}
|
|
|
|
elseif ( ($column[0] == 'email') || ($column[0] == 'email_home') )
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['apps']['email'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$ref='<a href="'.$GLOBALS['phpgw']->link("/email/compose.php","to=" . urlencode($coldata)).'" target="_new">';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$ref='<a href="mailto:'.$coldata.'">';
|
|
|
|
}
|
|
|
|
$data=$coldata . '</a>';
|
|
|
|
}
|
|
|
|
else /* But these do not */
|
|
|
|
{
|
|
|
|
$ref = ''; $data = $coldata;
|
|
|
|
}
|
|
|
|
$this->template->set_var('col_data',$ref.$data);
|
|
|
|
$this->template->parse('columns','column',True);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (1)
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('row_view_link',$GLOBALS['phpgw']->link('/index.php',
|
2001-07-08 15:54:40 +02:00
|
|
|
'menuaction=addressbook.uiaddressbook.view&ab_id='.$entries[$i]['id']));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('row_view_link','');
|
|
|
|
$this->template->set_var('lang_view',lang('Private'));
|
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('row_vcard_link',$GLOBALS['phpgw']->link('/index.php',
|
2001-07-08 15:54:40 +02:00
|
|
|
'menuaction=addressbook.uivcard.out&ab_id='.$entries[$i]['id']));
|
|
|
|
/* echo '<br>: ' . $contacts->grants[$myowner] . ' - ' . $myowner; */
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($this->contacts->check_perms($this->contacts->grants[$myowner],PHPGW_ACL_EDIT) || $myowner == $GLOBALS['phpgw_info']['user']['account_id'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('row_edit','<a href="' . $GLOBALS['phpgw']->link('/index.php',
|
2001-07-08 15:54:40 +02:00
|
|
|
'menuaction=addressbook.uiaddressbook.edit&ab_id='.$entries[$i]['id']) . '">' . lang('Edit') . '</a>');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('row_edit',' ');
|
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('row_owner',$GLOBALS['phpgw']->accounts->id2name($myowner));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
|
|
|
$this->template->parse('rows','row',True);
|
|
|
|
$this->template->pparse('out','row');
|
|
|
|
reset($columns_to_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->template->pparse('out','addressbook_footer');
|
|
|
|
$this->save_sessiondata();
|
2001-08-27 11:52:35 +02:00
|
|
|
/* $GLOBALS['phpgw']->common->phpgw_footer(); */
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
function add_email()
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-20 05:55:57 +02:00
|
|
|
$name = $GLOBALS['HTTP_POST_VARS']['name'] ? $GLOBALS['HTTP_POST_VARS']['name'] : $GLOBALS['HTTP_GET_VARS']['name'];
|
|
|
|
$referer = $GLOBALS['HTTP_POST_VARS']['referer'] ? $GLOBALS['HTTP_POST_VARS']['referer'] : $GLOBALS['HTTP_GET_VARS']['referer'];
|
|
|
|
$add_email = $GLOBALS['HTTP_POST_VARS']['add_email'] ? $GLOBALS['HTTP_POST_VARS']['add_email'] : $GLOBALS['HTTP_GET_VARS']['add_email'];
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$named = explode(' ', $name);
|
2001-12-11 02:44:13 +01:00
|
|
|
for ($i=count($named);$i>=0;$i--)
|
|
|
|
{
|
|
|
|
$names[$i] = $named[$i];
|
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($names[2])
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['n_given'] = $names[0];
|
|
|
|
$fields['n_middle'] = $names[1];
|
|
|
|
$fields['n_family'] = $names[2];
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['n_given'] = $names[0];
|
|
|
|
$fields['n_family'] = $names[1];
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
2001-12-11 02:44:13 +01:00
|
|
|
$fields['n_given'] = $fields['n_given'] ? $fields['n_given'] : ' ';
|
|
|
|
$fields['n_family'] = $fields['n_family'] ? $fields['n_family'] : ' ';
|
|
|
|
$fields['fn'] = $fields['n_given'] . ' ' . $fields['n_family'];
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['email'] = $add_email;
|
|
|
|
$fields['access'] = 'private';
|
|
|
|
$fields['tid'] = 'n';
|
|
|
|
$referer = urlencode($referer);
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$fields['owner'] = $GLOBALS['phpgw_info']['user']['account_id'];
|
2001-12-11 02:44:13 +01:00
|
|
|
// _debug_array($fields);exit;
|
2001-08-09 02:19:28 +02:00
|
|
|
$this->bo->add_entry($fields);
|
2001-07-13 11:03:31 +02:00
|
|
|
$ab_id = $this->bo->get_lastid();
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
Header('Location: '
|
2001-09-03 14:00:38 +02:00
|
|
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id . '&referer=' . $referer));
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
function copy()
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$addnew = $this->bo->read_entry(array('id' => $GLOBALS['ab_id'], 'fields' => $this->contacts->stock_contact_fields));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$addnew[0]['note'] .= "\nCopied from " . $GLOBALS['phpgw']->accounts->id2name($addnew[0]['owner']).", record #".$addnew[0]['id'].'.';
|
|
|
|
$addnew[0]['owner'] = $GLOBALS['phpgw_info']['user']['account_id'];
|
2001-08-09 02:32:59 +02:00
|
|
|
unset($addnew[0]['id']);
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields = $addnew[0];
|
|
|
|
|
2001-08-09 02:32:59 +02:00
|
|
|
$ab_id = $this->bo->add_entry($fields);
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.edit&ab_id=' . $ab_id));
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function add()
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($GLOBALS['HTTP_POST_VARS']['submit'])
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields = $this->get_form();
|
|
|
|
|
|
|
|
$referer = urlencode($fields['referer']);
|
|
|
|
unset($fields['referer']);
|
2001-08-27 11:52:35 +02:00
|
|
|
$fields['owner'] = $GLOBALS['phpgw_info']['user']['account_id'];
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-04 16:12:32 +02:00
|
|
|
$this->bo->add_entry($fields);
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$ab_id = $this->bo->get_lastid();
|
|
|
|
|
|
|
|
Header('Location: '
|
2001-09-20 05:55:57 +02:00
|
|
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id . '&referer=' . $referer));
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$this->template->set_file(array('add' => 'add.tpl'));
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-13 11:03:31 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
|
|
|
|
$this->addressbook_form('','menuaction=addressbook.uiaddressbook.add','Add','',$customfields,$this->cat_id);
|
|
|
|
|
|
|
|
$this->template->set_var('lang_ok',lang('ok'));
|
|
|
|
$this->template->set_var('lang_clear',lang('clear'));
|
|
|
|
$this->template->set_var('lang_cancel',lang('cancel'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('cancel_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->parse('out','add');
|
|
|
|
$this->template->pparse('out','add');
|
|
|
|
}
|
|
|
|
|
|
|
|
function edit()
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($GLOBALS['HTTP_POST_VARS']['submit'])
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$_fields = $this->get_form();
|
2001-07-13 11:03:31 +02:00
|
|
|
/* _debug_array($fields);exit; */
|
2001-09-03 14:00:38 +02:00
|
|
|
$check = $this->bo->read_entry(array('id' => $_fields['ab_id'], 'fields' => array('owner' => 'owner','tid' => 'tid')));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if (($this->contacts->grants[$check[0]['owner']] & PHPGW_ACL_EDIT) && $check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id'])
|
2001-07-13 11:03:31 +02:00
|
|
|
{
|
|
|
|
$userid = $check[0]['owner'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$userid = $GLOBALS['phpgw_info']['user']['account_id'];
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-09-03 14:00:38 +02:00
|
|
|
$_fields['owner'] = $userid;
|
|
|
|
$referer = urlencode($_fields['referer']);
|
|
|
|
unset($_fields['referer']);
|
|
|
|
|
|
|
|
$this->bo->update_entry($_fields);
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
Header('Location: '
|
2001-09-03 14:00:38 +02:00
|
|
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $_fields['ab_id'] . '&referer=' . $referer)
|
|
|
|
);
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
/* First, make sure they have permission to this entry */
|
2001-09-03 14:00:38 +02:00
|
|
|
$check = $this->bo->read_entry(array('id' => $GLOBALS['HTTP_GET_VARS']['ab_id'], 'fields' => array('owner' => 'owner','tid' => 'tid')));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if ( !$this->contacts->check_perms($this->contacts->grants[$check[0]['owner']],PHPGW_ACL_EDIT) &&
|
|
|
|
($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']) )
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-13 11:03:31 +02:00
|
|
|
echo parse_navbar();
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* Read in user custom fields, if any */
|
|
|
|
$customfields = $this->read_custom_fields();
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* merge in extra fields */
|
|
|
|
$qfields = $this->contacts->stock_contact_fields + $this->extrafields + $customfields;
|
2001-09-03 14:00:38 +02:00
|
|
|
$fields = $this->bo->read_entry(array('id' => $GLOBALS['HTTP_GET_VARS']['ab_id'], 'fields' => $qfields));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->addressbook_form('edit','menuaction=addressbook.uiaddressbook.edit',lang('Edit'),$fields[0],$customfields);
|
|
|
|
|
|
|
|
$this->template->set_file(array('edit' => 'edit.tpl'));
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('ab_id',$GLOBALS['HTTP_GET_VARS']['ab_id']);
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('tid',$check[0]['tid']);
|
|
|
|
$this->template->set_var('referer',$referer);
|
|
|
|
$this->template->set_var('lang_ok',lang('ok'));
|
|
|
|
$this->template->set_var('lang_clear',lang('clear'));
|
|
|
|
$this->template->set_var('lang_cancel',lang('cancel'));
|
|
|
|
$this->template->set_var('lang_submit',lang('submit'));
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('cancel_link','<form method="POST" action="'
|
|
|
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list') . '">');
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if (($this->contacts->grants[$check[0]['owner']] & PHPGW_ACL_DELETE) || $check[0]['owner'] == $GLOBALS['phpgw_info']['user']['account_id'])
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('delete_link','<form method="POST" action="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.delete') . '">');
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('delete_button','<input type="submit" name="delete" value="' . lang('Delete') . '">');
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$this->template->pfp('out','edit');
|
|
|
|
}
|
|
|
|
|
|
|
|
function delete()
|
|
|
|
{
|
2001-09-20 05:55:57 +02:00
|
|
|
$ab_id = $GLOBALS['HTTP_POST_VARS']['entry']['ab_id'] ? $GLOBALS['HTTP_POST_VARS']['entry']['ab_id'] : $GLOBALS['HTTP_POST_VARS']['ab_id'];
|
|
|
|
$confirm = $GLOBALS['HTTP_GET_VARS']['confirm'] ? $GLOBALS['HTTP_GET_VARS']['confirm'] :$GLOBALS['HTTP_POST_VARS']['confirm'];
|
2001-10-08 18:04:23 +02:00
|
|
|
if (!$ab_id)
|
|
|
|
{
|
|
|
|
$ab_id = $GLOBALS['HTTP_GET_VARS']['ab_id']; // else plain Link in delete does not work
|
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$ab_id)
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
|
2001-08-09 02:19:28 +02:00
|
|
|
$check = $this->bo->read_entry(array('id' => $ab_id, 'fields' => array('owner' => 'owner','tid' => 'tid')));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-10-08 18:04:23 +02:00
|
|
|
if (!(($this->contacts->grants[$check[0]['owner']] & PHPGW_ACL_DELETE) || $check[0]['owner'] == $GLOBALS['phpgw_info']['user']['account_id']))
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_file(array('delete' => 'delete.tpl'));
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($confirm != 'true')
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-13 11:03:31 +02:00
|
|
|
echo parse_navbar();
|
2001-09-20 05:55:57 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_sure',lang('Are you sure you want to delete this entry ?'));
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('no_link',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_no',lang('NO'));
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('yes_link',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.delete&ab_id=' . $ab_id . '&confirm=true'));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_yes',lang('YES'));
|
|
|
|
$this->template->pparse('out','delete');
|
2001-09-20 05:55:57 +02:00
|
|
|
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-09 02:19:28 +02:00
|
|
|
$this->bo->delete_entry(array('id' => $ab_id));
|
2001-09-03 14:00:38 +02:00
|
|
|
@Header('Location: ' . $GLOBALS['phpgw']->link('/addressbook/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
function view()
|
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$ab_id = $GLOBALS['HTTP_GET_VARS']['ab_id'];
|
|
|
|
$submit = $GLOBALS['HTTP_POST_VARS']['submit'];
|
|
|
|
$referer = $GLOBALS['HTTP_GET_VARS']['referer'];
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-08-04 16:12:32 +02:00
|
|
|
/* First, make sure they have permission to this entry */
|
2001-08-09 02:19:28 +02:00
|
|
|
$check = $this->bo->read_entry(array('id' => $ab_id, 'fields' => array('owner' => 'owner','tid' => 'tid')));
|
2001-08-04 16:12:32 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$tmp = $check[0]['owner'];
|
|
|
|
$perms = $this->contacts->check_perms($this->contacts->grants[$tmp],PHPGW_ACL_READ);
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
if ( (!$perms) && ($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']) )
|
2001-07-10 01:20:46 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-10 01:20:46 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$ab_id)
|
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
elseif (!$submit && $ab_id)
|
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-13 11:03:31 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_file(array('view_t' => 'view.tpl'));
|
|
|
|
$this->template->set_block('view_t','view_header','view_header');
|
|
|
|
$this->template->set_block('view_t','view_row','view_row');
|
|
|
|
$this->template->set_block('view_t','view_footer','view_footer');
|
|
|
|
$this->template->set_block('view_t','view_buttons','view_buttons');
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$customfields = $this->read_custom_fields();
|
|
|
|
/* _debug_array($this->prefs); */
|
|
|
|
while (list($column,$x) = each($this->contacts->stock_contact_fields))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
if (isset($this->prefs[$column]) && $this->prefs[$column])
|
|
|
|
{
|
|
|
|
$columns_to_display[$column] = True;
|
|
|
|
$colname[$column] = $column;
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-08-04 16:12:32 +02:00
|
|
|
/* No prefs? */
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$columns_to_display )
|
|
|
|
{
|
|
|
|
$columns_to_display = array(
|
|
|
|
'n_given' => 'n_given',
|
|
|
|
'n_family' => 'n_family',
|
|
|
|
'org_name' => 'org_name',
|
|
|
|
'tel_work' => 'tel_work',
|
|
|
|
'tel_home' => 'tel_home',
|
|
|
|
'email' => 'email',
|
|
|
|
'email_home' => 'email_home'
|
|
|
|
);
|
|
|
|
while ($column = each($columns_to_display))
|
|
|
|
{
|
|
|
|
$colname[$column[0]] = $column[1];
|
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$noprefs = ' - ' . lang('Please set your preferences for this app');
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* merge in extra fields */
|
|
|
|
$qfields = $this->contacts->stock_contact_fields + $this->extrafields + $customfields;
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-08-09 02:19:28 +02:00
|
|
|
$fields = $this->bo->read_entry(array('id' => $ab_id, 'fields' => $qfields));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$record_owner = $fields[0]['owner'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($fields[0]['access'] == 'private')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$access_check = lang('private');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$access_check = lang('public');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('lang_viewpref',lang('Address book - view') . $noprefs);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
@reset($qfields);
|
|
|
|
while (list($column,$null) = @each($qfields))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
if($this->display_name($colname[$column]))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('display_col',$this->display_name($colname[$column]));
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
elseif($this->display_name($column))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('display_col',$this->display_name($column));
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('display_col',ucfirst($column));
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$ref = $data = '';
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($fields[0][$column])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('th_bg',$tr_color);
|
|
|
|
$coldata = $fields[0][$column];
|
|
|
|
/* Some fields require special formatting. */
|
|
|
|
if ( ($column == 'note' || $column == 'pubkey') && $coldata )
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$datarray = explode ("\n",$coldata);
|
|
|
|
if ($datarray[1])
|
|
|
|
{
|
|
|
|
while (list($key,$info) = each ($datarray))
|
|
|
|
{
|
|
|
|
if ($key)
|
|
|
|
{
|
|
|
|
$data .= '</td></tr><tr bgcolor="'.$tr_color.'"><td width="30%"> </td><td width="70%">' .$info;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* First row, don't close td/tr */
|
|
|
|
$data .= $info;
|
|
|
|
}
|
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$data .= '</tr>';
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$data = $coldata;
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
elseif($column == 'label' && $coldata)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$data .= $this->contacts->formatted_address($fields[0]['id'],'',False);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
elseif ($column == 'url' && $coldata)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$ref = '<a href="' . $coldata . '" target="_new">';
|
|
|
|
$data = $coldata . '</a>';
|
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
elseif ( (($column == 'email') || ($column == 'email_home')) && $coldata)
|
2001-07-13 11:03:31 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['apps']['email'])
|
2001-07-13 11:03:31 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$ref='<a href="' . $GLOBALS['phpgw']->link('/email/compose.php','to='
|
2001-07-13 11:03:31 +02:00
|
|
|
. urlencode($coldata)) . '" target="_new">';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$ref = '<a href="mailto:'.$coldata.'">';
|
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$data = $coldata.'</a>';
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* But these do not */
|
2001-08-27 11:52:35 +02:00
|
|
|
$ref = ''; $data = $coldata;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$data)
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$this->template->set_var('ref_data',' ');
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('ref_data',$ref . $data);
|
|
|
|
}
|
|
|
|
$this->template->parse('cols','view_row',True);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
/* Following cleans up view_row, since we were only using it to fill {cols} */
|
|
|
|
$this->template->set_var('view_row','');
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['cat_id'] = is_array($this->cat_id) ? implode(',',$this->cat_id) : $this->cat_id;
|
|
|
|
|
|
|
|
$cats = explode(',',$fields[0]['cat_id']);
|
|
|
|
if ($cats[1])
|
|
|
|
{
|
|
|
|
while (list($key,$contactscat) = each($cats))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($contactscat)
|
|
|
|
{
|
2001-09-18 18:42:18 +02:00
|
|
|
$catinfo = $this->cat->return_single(intval($contactscat));
|
2001-07-13 11:03:31 +02:00
|
|
|
$catname .= $catinfo[0]['name'] . '; ';
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$this->cat_id)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->cat_id = $cats[0];
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields[0]['cat_id'] = ereg_replace(',','',$fields[0]['cat_id']);
|
2001-09-18 18:42:18 +02:00
|
|
|
$catinfo = $this->cat->return_single(intval($fields[0]['cat_id']));
|
2001-07-13 11:03:31 +02:00
|
|
|
$catname = $catinfo[0]['name'];
|
|
|
|
if (!$this->cat_id)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->cat_id = $fields[0]['cat_id'];
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$catname) { $catname = lang('none'); }
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-08-04 16:12:32 +02:00
|
|
|
/* These are in the footer */
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_owner',lang('Record owner'));
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('owner',$GLOBALS['phpgw']->common->grab_owner_name($record_owner));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_access',lang('Record access'));
|
|
|
|
$this->template->set_var('access',$access_check);
|
|
|
|
$this->template->set_var('lang_category',lang('Category'));
|
|
|
|
$this->template->set_var('catname',$catname);
|
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
if (($this->contacts->grants[$record_owner] & PHPGW_ACL_EDIT) || ($record_owner == $GLOBALS['phpgw_info']['user']['account_id']))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$extra_vars = array('cd' => 16,'query' => $this->query,'cat_id' => $this->cat_id);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($referer)
|
|
|
|
{
|
|
|
|
$extra_vars += array('referer' => urlencode($referer));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->template->set_var('edit_button',$this->html_1button_form('edit','Edit',
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.edit&ab_id=' .$ab_id)));
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
$this->template->set_var('copy_button',$this->html_1button_form('submit','copy',
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.copy&ab_id=' . $fields[0]['id'])));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
if ($fields[0]['n_family'] && $fields[0]['n_given'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('vcard_button',$this->html_1button_form('VCardForm','VCard',
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uivcard.out&ab_id=' .$ab_id)));
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('vcard_button',lang('no vcard'));
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('done_button',$this->html_1button_form('DoneForm','Done',
|
2001-09-20 04:43:39 +02:00
|
|
|
$referer ? $referer : $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list')));
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('access_link',$access_link);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->pfp('out','view_t');
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->common->hook('addressbook_view');
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function html_1button_form($name,$lang,$link)
|
|
|
|
{
|
|
|
|
$html = '<form method="POST" action="' . $link . '">' . "\n";
|
|
|
|
$html .= '<input type="submit" name="' . $name .'" value="' . lang($lang) . '">' . "\n";
|
|
|
|
$html .= '</form>' . "\n";
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
|
|
function preferences()
|
|
|
|
{
|
2001-09-15 14:54:43 +02:00
|
|
|
$submit = $GLOBALS['HTTP_POST_VARS']['submit'];
|
|
|
|
$prefs = $GLOBALS['HTTP_POST_VARS']['prefs'];
|
|
|
|
$other = $GLOBALS['HTTP_POST_VARS']['other'];
|
|
|
|
$fcat_id = $GLOBALS['HTTP_POST_VARS']['fcat_id'];
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* _debug_array($this->prefs); */
|
|
|
|
$customfields = $this->read_custom_fields();
|
|
|
|
|
|
|
|
$qfields = $this->contacts->stock_contact_fields + $this->extrafields + $customfields;
|
|
|
|
|
|
|
|
if ($submit)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$totalerrors = 0;
|
|
|
|
if (!count($prefs))
|
|
|
|
{
|
|
|
|
$errors[$totalerrors++] = lang('You must select at least 1 column to display');
|
|
|
|
}
|
|
|
|
if (!$totalerrors)
|
|
|
|
{
|
|
|
|
@reset($qfields);
|
|
|
|
$this->bo->save_preferences($prefs,$other,$qfields,$fcat_id);
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
2001-07-13 11:03:31 +02:00
|
|
|
echo parse_navbar();
|
|
|
|
|
|
|
|
if ($totalerrors)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
echo '<p><center>' . $GLOBALS['phpgw']->common->error_list($errors) . '</center>';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_file(array('preferences' => 'preferences.tpl'));
|
|
|
|
|
2001-09-15 14:54:43 +02:00
|
|
|
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.preferences'));
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$i = 0; $j = 0;
|
2001-09-03 14:00:38 +02:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
while (list($col, $descr) = each($qfields))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
/* echo '<br>test: $col - $i $j - ' . count($abc); */
|
2001-07-13 11:03:31 +02:00
|
|
|
$i++; $j++;
|
|
|
|
$showcol = $this->display_name($col);
|
|
|
|
if (!$showcol) { $showcol = $col; }
|
2001-08-04 16:12:32 +02:00
|
|
|
/* yank the *'s prior to testing for a valid column description */
|
2001-08-27 11:52:35 +02:00
|
|
|
$coltest = ereg_replace('\*','',$showcol);
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($coltest)
|
|
|
|
{
|
|
|
|
$this->template->set_var($col,$showcol);
|
2001-09-03 14:00:38 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['addressbook'][$col])
|
2001-07-13 11:03:31 +02:00
|
|
|
{
|
|
|
|
$this->template->set_var($col.'_checked',' checked');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var($col.'_checked','');
|
|
|
|
}
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-09-15 14:54:43 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($customfields)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$custom_var = '
|
|
|
|
<tr>
|
|
|
|
<td><font color="#000000" face="">'.lang('Custom').' '.lang('Fields').':</font></td>
|
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
';
|
|
|
|
while( list($cf) = each($customfields) )
|
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
2001-07-13 11:03:31 +02:00
|
|
|
$custom_var .= "\n" . '<tr bgcolor="' . $tr_color . '">' . "\n";
|
|
|
|
$custom_var .= ' <td><input type="checkbox" name="prefs['
|
|
|
|
. strtolower($cf) . ']"'
|
|
|
|
. ($this->prefs[$cf] ? ' checked' : '')
|
|
|
|
. '>' . $cf . '</option></td>' . "\n"
|
|
|
|
. '</tr>' . "\n";
|
|
|
|
}
|
|
|
|
$this->template->set_var('custom_fields',$custom_var);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('custom_fields','');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var(tr_color,$tr_color);
|
|
|
|
$this->template->set_var('lang_showbirthday',lang('show birthday reminders on main screen'));
|
2001-09-15 14:54:43 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($this->prefs['mainscreen_showbirthdays'])
|
|
|
|
{
|
|
|
|
$this->template->set_var('show_birthday',' checked');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('show_birthday','');
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$list = array(
|
|
|
|
'' => lang('All'),
|
|
|
|
'private' => lang('Private'),
|
|
|
|
'blank' => lang('Blank')
|
|
|
|
);
|
|
|
|
$this->template->set_var('lang_default_filter',lang('Default Filter'));
|
|
|
|
$this->template->set_var('filter_select',$this->formatted_list('other[default_filter]',$list,$this->prefs['default_filter']));
|
2001-09-15 14:54:43 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_autosave',lang('Autosave default category'));
|
|
|
|
if ($this->prefs['autosave_category'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('autosave',' checked');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('autosave','');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_defaultcat',lang('Default Category'));
|
|
|
|
$this->template->set_var('cat_select',$this->cat_option($this->prefs['default_category']));
|
|
|
|
$this->template->set_var('lang_abprefs',lang('Addressbook').' '.lang('Preferences'));
|
|
|
|
$this->template->set_var('lang_fields',lang('Fields to show in address list'));
|
|
|
|
$this->template->set_var('lang_personal',lang('Personal'));
|
|
|
|
$this->template->set_var('lang_business',lang('Business'));
|
|
|
|
$this->template->set_var('lang_home',lang('Home'));
|
|
|
|
$this->template->set_var('lang_phones',lang('Extra').' '.lang('Phone Numbers'));
|
|
|
|
$this->template->set_var('lang_other',lang('Other').' '.lang('Fields'));
|
|
|
|
$this->template->set_var('lang_otherprefs',lang('Other').' '.lang('Preferences'));
|
|
|
|
$this->template->set_var('lang_submit',lang('submit'));
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('th_bg', $GLOBALS['phpgw_info']['theme']['th_bg']);
|
|
|
|
$this->template->set_var('th_text',$GLOBALS['phpgw_info']['theme']['th_text']);
|
|
|
|
$this->template->set_var('row_on', $GLOBALS['phpgw_info']['theme']['row_on']);
|
|
|
|
$this->template->set_var('row_off',$GLOBALS['phpgw_info']['theme']['row_off']);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->pparse('out','preferences');
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
function get_form()
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$entry = $GLOBALS['HTTP_POST_VARS']['entry'];
|
|
|
|
$fcat_id = $GLOBALS['HTTP_POST_VARS']['fcat_id'];
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* _debug_array($entry); exit; */
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (!$entry['bday_month'] && !$entry['bday_day'] && !$entry['bday_year'])
|
2001-07-09 19:35:27 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['bday'] = '';
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$bday_day = $entry['bday_day'];
|
|
|
|
if (strlen($bday_day) == 1)
|
|
|
|
{
|
|
|
|
$bday_day = '0' . $entry['bday_day'];
|
|
|
|
}
|
|
|
|
$fields['bday'] = $entry['bday_month'] . '/' . $bday_day . '/' . $entry['bday_year'];
|
2001-07-09 19:35:27 +02:00
|
|
|
}
|
|
|
|
|
2001-10-08 17:43:57 +02:00
|
|
|
$fields['url'] = $entry['url'] == 'http://' ? '' : $entry['url'];
|
|
|
|
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['org_name'] = $entry['company'];
|
|
|
|
$fields['org_unit'] = $entry['department'];
|
|
|
|
$fields['n_given'] = $entry['firstname'];
|
|
|
|
$fields['n_family'] = $entry['lastname'];
|
|
|
|
$fields['n_middle'] = $entry['middle'];
|
|
|
|
$fields['n_prefix'] = $entry['prefix'];
|
|
|
|
$fields['n_suffix'] = $entry['suffix'];
|
|
|
|
if ($entry['prefix']) { $pspc = ' '; }
|
|
|
|
if ($entry['middle']) { $mspc = ' '; } else { $nspc = ' '; }
|
|
|
|
if ($entry['suffix']) { $sspc = ' '; }
|
|
|
|
$fields['fn'] = $entry['prefix'].$pspc.$entry['firstname'].$nspc.$mspc.$entry['middle'].$mspc.$entry['lastname'].$sspc.$entry['suffix'];
|
|
|
|
$fields['email'] = $entry['email'];
|
|
|
|
$fields['email_type'] = $entry['email_type'];
|
|
|
|
$fields['email_home'] = $entry['hemail'];
|
|
|
|
$fields['email_home_type'] = $entry['hemail_type'];
|
|
|
|
$fields['title'] = $entry['title'];
|
|
|
|
$fields['tel_work'] = $entry['wphone'];
|
|
|
|
$fields['tel_home'] = $entry['hphone'];
|
|
|
|
$fields['tel_fax'] = $entry['fax'];
|
|
|
|
$fields['tel_pager'] = $entry['pager'];
|
|
|
|
$fields['tel_cell'] = $entry['mphone'];
|
|
|
|
$fields['tel_msg'] = $entry['msgphone'];
|
|
|
|
$fields['tel_car'] = $entry['carphone'];
|
|
|
|
$fields['tel_video'] = $entry['vidphone'];
|
|
|
|
$fields['tel_isdn'] = $entry['isdnphone'];
|
|
|
|
$fields['adr_one_street'] = $entry['bstreet'];
|
|
|
|
$fields['adr_one_locality'] = $entry['bcity'];
|
|
|
|
$fields['adr_one_region'] = $entry['bstate'];
|
|
|
|
$fields['adr_one_postalcode'] = $entry['bzip'];
|
|
|
|
$fields['adr_one_countryname'] = $entry['bcountry'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if($entry['one_dom'])
|
|
|
|
{
|
|
|
|
$typea .= 'dom;';
|
|
|
|
}
|
|
|
|
if($entry['one_intl'])
|
|
|
|
{
|
|
|
|
$typea .= 'intl;';
|
|
|
|
}
|
|
|
|
if($entry['one_parcel'])
|
|
|
|
{
|
|
|
|
$typea .= 'parcel;';
|
|
|
|
}
|
|
|
|
if($entry['one_postal'])
|
|
|
|
{
|
|
|
|
$typea .= 'postal;';
|
|
|
|
}
|
|
|
|
$fields['adr_one_type'] = substr($typea,0,-1);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['address2'] = $entry['address2'];
|
|
|
|
$fields['address3'] = $entry['address3'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['adr_two_street'] = $entry['hstreet'];
|
|
|
|
$fields['adr_two_locality'] = $entry['hcity'];
|
|
|
|
$fields['adr_two_region'] = $entry['hstate'];
|
|
|
|
$fields['adr_two_postalcode'] = $entry['hzip'];
|
|
|
|
$fields['adr_two_countryname'] = $entry['hcountry'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if($entry['two_dom'])
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$typeb .= 'dom;';
|
|
|
|
}
|
|
|
|
if($entry['two_intl'])
|
|
|
|
{
|
|
|
|
$typeb .= 'intl;';
|
|
|
|
}
|
|
|
|
if($entry['two_parcel'])
|
|
|
|
{
|
|
|
|
$typeb .= 'parcel;';
|
|
|
|
}
|
|
|
|
if($entry['two_postal'])
|
|
|
|
{
|
|
|
|
$typeb .= 'postal;';
|
|
|
|
}
|
|
|
|
$fields['adr_two_type'] = substr($typeb,0,-1);
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$custom = $this->read_custom_fields();
|
|
|
|
while (list($name,$val) = @each($custom))
|
|
|
|
{
|
|
|
|
$fields[$name] = $entry[$val];
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['ophone'] = $entry['ophone'];
|
|
|
|
$fields['tz'] = $entry['timezone'];
|
|
|
|
$fields['pubkey'] = $entry['pubkey'];
|
|
|
|
$fields['note'] = $entry['notes'];
|
|
|
|
$fields['label'] = $entry['label'];
|
2001-07-09 19:35:27 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($entry['access'] == True)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['access'] = 'private';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$fields['access'] = 'public';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (is_array($fcat_id))
|
|
|
|
{
|
|
|
|
$fields['cat_id'] = count($fcat_id) > 1 ? ','.implode(',',$fcat_id).',' : $fcat_id[0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$fields['cat_id'] = $fcat_id;
|
2001-09-20 05:55:57 +02:00
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['ab_id'] = $entry['ab_id'];
|
|
|
|
$fields['tid'] = $entry['tid'];
|
|
|
|
if (!$fields['tid'])
|
|
|
|
{
|
|
|
|
$fields['tid'] = 'n';
|
|
|
|
}
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$fields['referer'] = $entry['referer'];
|
|
|
|
/* _debug_array($fields);exit; */
|
|
|
|
return $fields;
|
|
|
|
} /* end get_form() */
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
/* Following used for add/edit */
|
|
|
|
function addressbook_form($format,$action,$title='',$fields='',$customfields='',$cat_id='')
|
|
|
|
{
|
2001-09-20 05:55:57 +02:00
|
|
|
$referer = $GLOBALS['HTTP_GET_VARS']['referer'] ? $GLOBALS['HTTP_GET_VARS']['referer'] : $GLOBALS['HTTP_POST_VARS']['referer'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_file(array('form' => 'form.tpl'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
if ( ($GLOBALS['phpgw_info']['server']['countrylist'] == 'user_choice' &&
|
|
|
|
$GLOBALS['phpgw_info']['user']['preferences']['common']['countrylist'] == 'use_select') ||
|
|
|
|
($GLOBALS['phpgw_info']['server']['countrylist'] == 'force_select'))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$countrylist = True;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$email = $fields['email'];
|
|
|
|
$emailtype = $fields['email_type'];
|
|
|
|
$hemail = $fields['email_home'];
|
|
|
|
$hemailtype = $fields['email_home_type'];
|
|
|
|
$firstname = $fields['n_given'];
|
|
|
|
$middle = $fields['n_middle'];
|
|
|
|
$prefix = $fields['n_prefix'];
|
|
|
|
$suffix = $fields['n_suffix'];
|
|
|
|
$lastname = $fields['n_family'];
|
|
|
|
$title = $fields['title'];
|
|
|
|
$wphone = $fields['tel_work'];
|
|
|
|
$hphone = $fields['tel_home'];
|
|
|
|
$fax = $fields['tel_fax'];
|
|
|
|
$pager = $fields['tel_pager'];
|
|
|
|
$mphone = $fields['tel_cell'];
|
|
|
|
$ophone = $fields['ophone'];
|
|
|
|
$msgphone = $fields['tel_msg'];
|
|
|
|
$isdnphone = $fields['tel_isdn'];
|
|
|
|
$carphone = $fields['tel_car'];
|
|
|
|
$vidphone = $fields['tel_video'];
|
|
|
|
$preferred = $fields['tel_prefer'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$bstreet = $fields['adr_one_street'];
|
|
|
|
$address2 = $fields['address2'];
|
|
|
|
$address3 = $fields['address3'];
|
|
|
|
$bcity = $fields['adr_one_locality'];
|
|
|
|
$bstate = $fields['adr_one_region'];
|
|
|
|
$bzip = $fields['adr_one_postalcode'];
|
|
|
|
$bcountry = $fields['adr_one_countryname'];
|
|
|
|
$one_dom = $fields['one_dom'];
|
|
|
|
$one_intl = $fields['one_intl'];
|
|
|
|
$one_parcel = $fields['one_parcel'];
|
|
|
|
$one_postal = $fields['one_postal'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$hstreet = $fields['adr_two_street'];
|
|
|
|
$hcity = $fields['adr_two_locality'];
|
|
|
|
$hstate = $fields['adr_two_region'];
|
|
|
|
$hzip = $fields['adr_two_postalcode'];
|
|
|
|
$hcountry = $fields['adr_two_countryname'];
|
|
|
|
$btype = $fields['adr_two_type'];
|
|
|
|
$two_dom = $fields['two_dom'];
|
|
|
|
$two_intl = $fields['two_intl'];
|
|
|
|
$two_parcel = $fields['two_parcel'];
|
|
|
|
$two_postal = $fields['two_postal'];
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$timezone = $fields['tz'];
|
|
|
|
$bday = $fields['bday'];
|
|
|
|
$notes = stripslashes($fields['note']);
|
|
|
|
$label = stripslashes($fields['label']);
|
|
|
|
$company = $fields['org_name'];
|
|
|
|
$department = $fields['org_unit'];
|
|
|
|
$url = $fields['url'];
|
|
|
|
$pubkey = $fields['pubkey'];
|
|
|
|
$access = $fields['access'];
|
|
|
|
if(!$cat_id)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$cat_id = $fields['cat_id'];
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-11-23 03:10:21 +01:00
|
|
|
$cats_link = $this->cat_option($cat_id,True,False,True);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($access == 'private')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$access_check = ' checked';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
else
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$access_check = '';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($customfields)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
while(list($name,$value) = each($customfields))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$value = ereg_replace('_',' ',$value);
|
|
|
|
$custom .= '
|
2001-09-03 14:00:38 +02:00
|
|
|
<tr bgcolor="' . $GLOBALS['phpgw_info']['theme']['row_off'] . '">
|
2001-07-13 11:03:31 +02:00
|
|
|
<td> </td>
|
2001-09-03 14:00:38 +02:00
|
|
|
<td><font color="' . $GLOBALS['phpgw_info']['theme']['th_text'] . '" face="" size="-1">'.$value.':</font></td>
|
2001-07-13 11:03:31 +02:00
|
|
|
<td colspan="3"><INPUT size="30" name="entry[' . $name . ']" value="' . $fields[$value] . '"></td>
|
|
|
|
</tr>
|
|
|
|
';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($format != "view")
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-04 16:12:32 +02:00
|
|
|
/* Preferred phone number radio buttons */
|
2001-07-13 11:03:31 +02:00
|
|
|
$pref[0] = '<font size="-2">';
|
|
|
|
$pref[1] = '(' . lang('pref') . ')</font>';
|
|
|
|
while (list($name,$val) = each($this->contacts->tel_types))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$str[$name] = "\n".' <input type="radio" name="entry[tel_prefer]" value="'.$name.'"';
|
|
|
|
if ($name == $preferred)
|
|
|
|
{
|
|
|
|
$str[$name] .= ' checked';
|
|
|
|
}
|
|
|
|
$str[$name] .= '>';
|
|
|
|
$str[$name] = $pref[0].$str[$name].$pref[1];
|
|
|
|
$this->template->set_var("pref_".$name,$str[$name]);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if (strlen($bday) > 2)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
list( $month, $day, $year ) = split( '/', $bday );
|
|
|
|
$temp_month[$month] = ' selected';
|
|
|
|
$bday_month = '<select name="entry[bday_month]">'
|
|
|
|
. '<option value=""' . $temp_month[0] . '>' . '</option>'
|
|
|
|
. '<option value="1"' . $temp_month[1] . '>' . lang('january') . '</option>'
|
|
|
|
. '<option value="2"' . $temp_month[2] . '>' . lang('february') . '</option>'
|
|
|
|
. '<option value="3"' . $temp_month[3] . '>' . lang('march') . '</option>'
|
|
|
|
. '<option value="4"' . $temp_month[4] . '>' . lang('april') . '</option>'
|
|
|
|
. '<option value="5"' . $temp_month[5] . '>' . lang('may') . '</option>'
|
|
|
|
. '<option value="6"' . $temp_month[6] . '>' . lang('june') . '</option>'
|
|
|
|
. '<option value="7"' . $temp_month[7] . '>' . lang('july') . '</option>'
|
|
|
|
. '<option value="8"' . $temp_month[8] . '>' . lang('august') . '</option>'
|
|
|
|
. '<option value="9"' . $temp_month[9] . '>' . lang('september') . '</option>'
|
|
|
|
. '<option value="10"' . $temp_month[10] . '>' . lang('october') . '</option>'
|
|
|
|
. '<option value="11"' . $temp_month[11] . '>' . lang('november') . '</option>'
|
|
|
|
. '<option value="12"' . $temp_month[12] . '>' . lang('december') . '</option>'
|
|
|
|
. '</select>';
|
|
|
|
$bday_day = '<input maxlength="2" name="entry[bday_day]" value="' . $day . '" size="2">';
|
|
|
|
$bday_year = '<input maxlength="4" name="entry[bday_year]" value="' . $year . '" size="4">';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$bday_month = '<select name="entry[bday_month]">'
|
|
|
|
. '<option value="" selected> </option>'
|
|
|
|
. '<option value="1">' . lang('january') . '</option>'
|
|
|
|
. '<option value="2">' . lang('february') . '</option>'
|
|
|
|
. '<option value="3">' . lang('march') . '</option>'
|
|
|
|
. '<option value="4">' . lang('april') . '</option>'
|
|
|
|
. '<option value="5">' . lang('may') . '</option>'
|
|
|
|
. '<option value="6">' . lang('june') . '</option>'
|
|
|
|
. '<option value="7">' . lang('july') . '</option>'
|
|
|
|
. '<option value="8">' . lang('august') . '</option>'
|
|
|
|
. '<option value="9">' . lang('september') . '</option>'
|
|
|
|
. '<option value="10">' . lang('october') . '</option>'
|
|
|
|
. '<option value="11">' . lang('november') . '</option>'
|
|
|
|
. '<option value="12">' . lang('december') . '</option>'
|
|
|
|
. '</select>';
|
|
|
|
$bday_day = '<input name="entry[bday_day]" size="2" maxlength="2">';
|
|
|
|
$bday_year = '<input name="entry[bday_year]" size="4" maxlength="4">';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$time_zone = '<select name="entry[timezone]">' . "\n";
|
|
|
|
for ($i = -23; $i<24; $i++)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$time_zone .= '<option value="' . $i . '"';
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($i == $timezone)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$time_zone .= ' selected';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($i < 1)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$time_zone .= '>' . $i . '</option>' . "\n";
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$time_zone .= '>+' . $i . '</option>' . "\n";
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$time_zone .= '</select>' . "\n";
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$email_type = '<select name=entry[email_type]>';
|
|
|
|
while ($type = each($this->contacts->email_types))
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$email_type .= '<option value="' . $type[0] . '"';
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($type[0] == $emailtype) { $email_type .= ' selected'; }
|
2001-08-27 11:52:35 +02:00
|
|
|
$email_type .= '>' . $type[1] . '</option>';
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$email_type .= '</select>';
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
reset($this->contacts->email_types);
|
|
|
|
$hemail_type = '<select name=entry[hemail_type]>';
|
|
|
|
while ($type = each($this->contacts->email_types))
|
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$hemail_type .= '<option value="' . $type[0] . '"';
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($type[0] == $hemailtype) { $hemail_type .= ' selected'; }
|
2001-08-27 11:52:35 +02:00
|
|
|
$hemail_type .= '>' . $type[1] . '</option>';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-08-27 11:52:35 +02:00
|
|
|
$hemail_type .= '</select>';
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
reset($this->contacts->adr_types);
|
|
|
|
while (list($type,$val) = each($this->contacts->adr_types))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$badrtype .= "\n".'<INPUT type="checkbox" name="entry[one_'.$type.']"';
|
|
|
|
$ot = 'one_'.$type;
|
|
|
|
eval("
|
|
|
|
if (\$$ot=='on') {
|
|
|
|
\$badrtype .= ' value=\"on\" checked';
|
|
|
|
}
|
|
|
|
");
|
|
|
|
$badrtype .= '>'.$val;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
reset($this->contacts->adr_types);
|
|
|
|
while (list($type,$val) = each($this->contacts->adr_types))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$hadrtype .= "\n".'<INPUT type="checkbox" name="entry[two_'.$type.']"';
|
|
|
|
$tt = 'two_'.$type;
|
|
|
|
eval("
|
|
|
|
if (\$$tt=='on') {
|
|
|
|
\$hadrtype .= ' value=\"on\" checked';
|
|
|
|
}
|
|
|
|
");
|
|
|
|
$hadrtype .= '>'.$val;
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$notes = '<TEXTAREA cols="60" name="entry[notes]" rows="4">' . $notes . '</TEXTAREA>';
|
|
|
|
$label = '<TEXTAREA cols="60" name="entry[label]" rows="6">' . $label . '</TEXTAREA>';
|
|
|
|
$pubkey = '<TEXTAREA cols="60" name="entry[pubkey]" rows="6">' . $pubkey . '</TEXTAREA>';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$notes = '<form><TEXTAREA cols="60" name="entry[notes]" rows="4">'
|
2001-09-20 05:55:57 +02:00
|
|
|
. $notes . '</TEXTAREA></form>';
|
2001-08-27 11:52:35 +02:00
|
|
|
if ($bday == '//')
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$bday = '';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
if ($action)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
echo '<FORM action="' . $GLOBALS['phpgw']->link('/index.php', $action . '&referer='.urlencode($referer)).'" method="post">';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
|
2001-08-27 11:52:35 +02:00
|
|
|
if (!ereg('^http://',$url))
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-08-27 11:52:35 +02:00
|
|
|
$url = 'http://' . $url;
|
2001-07-13 11:03:31 +02:00
|
|
|
}
|
|
|
|
|
2001-09-03 14:00:38 +02:00
|
|
|
$birthday = $GLOBALS['phpgw']->common->dateformatorder($bday_year,$bday_month,$bday_day)
|
2001-07-13 11:03:31 +02:00
|
|
|
. '<font face="'.$theme["font"].'" size="-2">(e.g. 1969)</font>';
|
|
|
|
if ($format == 'edit')
|
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$create .= '<tr bgcolor="' . $GLOBALS['phpgw_info']['theme']['th_bg'] . '"><td colspan="2"><font size="-1">' . lang("Created by") . ':</font></td>'
|
2001-07-13 11:03:31 +02:00
|
|
|
. '<td colspan="3"><font size="-1">'
|
2001-09-03 14:00:38 +02:00
|
|
|
. $GLOBALS['phpgw']->common->grab_owner_name($fields["owner"]);
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$create .= '';
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
|
|
|
|
$this->template->set_var('lang_home',lang('Home'));
|
|
|
|
$this->template->set_var('lang_business',lang('Business'));
|
|
|
|
$this->template->set_var('lang_personal',lang('Personal'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_lastname',lang('Last Name'));
|
|
|
|
$this->template->set_var('lastname',$lastname);
|
|
|
|
$this->template->set_var('lang_firstname',lang('First Name'));
|
|
|
|
$this->template->set_var('firstname',$firstname);
|
|
|
|
$this->template->set_var('lang_middle',lang('Middle Name'));
|
|
|
|
$this->template->set_var('middle',$middle);
|
|
|
|
$this->template->set_var('lang_prefix',lang('Prefix'));
|
|
|
|
$this->template->set_var('prefix',$prefix);
|
|
|
|
$this->template->set_var('lang_suffix',lang('Suffix'));
|
|
|
|
$this->template->set_var('suffix',$suffix);
|
|
|
|
$this->template->set_var('lang_birthday',lang('Birthday'));
|
|
|
|
$this->template->set_var('birthday',$birthday);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_company',lang('Company Name'));
|
|
|
|
$this->template->set_var('company',$company);
|
|
|
|
$this->template->set_var('lang_department',lang('Department'));
|
|
|
|
$this->template->set_var('department',$department);
|
|
|
|
$this->template->set_var('lang_title',lang('Title'));
|
|
|
|
$this->template->set_var('title',$title);
|
|
|
|
$this->template->set_var('lang_email',lang('Business Email'));
|
|
|
|
$this->template->set_var('email',$email);
|
|
|
|
$this->template->set_var('lang_email_type',lang('Business EMail Type'));
|
|
|
|
$this->template->set_var('email_type',$email_type);
|
|
|
|
$this->template->set_var('lang_url',lang('URL'));
|
|
|
|
$this->template->set_var('url',$url);
|
|
|
|
$this->template->set_var('lang_timezone',lang('time zone offset'));
|
|
|
|
$this->template->set_var('timezone',$time_zone);
|
|
|
|
$this->template->set_var('lang_fax',lang('Business Fax'));
|
|
|
|
$this->template->set_var('fax',$fax);
|
|
|
|
$this->template->set_var('lang_wphone',lang('Business Phone'));
|
|
|
|
$this->template->set_var('wphone',$wphone);
|
|
|
|
$this->template->set_var('lang_pager',lang('Pager'));
|
|
|
|
$this->template->set_var('pager',$pager);
|
|
|
|
$this->template->set_var('lang_mphone',lang('Cell Phone'));
|
|
|
|
$this->template->set_var('mphone',$mphone);
|
|
|
|
$this->template->set_var('lang_msgphone',lang('Message Phone'));
|
|
|
|
$this->template->set_var('msgphone',$msgphone);
|
|
|
|
$this->template->set_var('lang_isdnphone',lang('ISDN Phone'));
|
|
|
|
$this->template->set_var('isdnphone',$isdnphone);
|
|
|
|
$this->template->set_var('lang_carphone',lang('Car Phone'));
|
|
|
|
$this->template->set_var('carphone',$carphone);
|
|
|
|
$this->template->set_var('lang_vidphone',lang('Video Phone'));
|
|
|
|
$this->template->set_var('vidphone',$vidphone);
|
2001-07-12 06:09:12 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_ophone',lang('Other Number'));
|
|
|
|
$this->template->set_var('ophone',$ophone);
|
|
|
|
$this->template->set_var('lang_bstreet',lang('Business Street'));
|
|
|
|
$this->template->set_var('bstreet',$bstreet);
|
|
|
|
$this->template->set_var('lang_address2',lang('Address Line 2'));
|
|
|
|
$this->template->set_var('address2',$address2);
|
|
|
|
$this->template->set_var('lang_address3',lang('Address Line 3'));
|
|
|
|
$this->template->set_var('address3',$address3);
|
|
|
|
$this->template->set_var('lang_bcity',lang('Business City'));
|
|
|
|
$this->template->set_var('bcity',$bcity);
|
|
|
|
$this->template->set_var('lang_bstate',lang('Business State'));
|
|
|
|
$this->template->set_var('bstate',$bstate);
|
|
|
|
$this->template->set_var('lang_bzip',lang('Business Zip Code'));
|
|
|
|
$this->template->set_var('bzip',$bzip);
|
|
|
|
$this->template->set_var('lang_bcountry',lang('Business Country'));
|
|
|
|
$this->template->set_var('bcountry',$bcountry);
|
|
|
|
if ($countrylist)
|
2001-07-12 06:09:12 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('bcountry',$GLOBALS['phpgw']->country->form_select($bcountry,'entry[bcountry]'));
|
2001-07-12 06:09:12 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
else
|
2001-07-12 06:09:12 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('bcountry','<input name="entry[bcountry]" value="' . $bcountry . '">');
|
2001-07-12 06:09:12 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_badrtype',lang('Address Type'));
|
|
|
|
$this->template->set_var('badrtype',$badrtype);
|
2001-07-12 06:09:12 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_hphone',lang('Home Phone'));
|
|
|
|
$this->template->set_var('hphone',$hphone);
|
|
|
|
$this->template->set_var('lang_hemail',lang('Home Email'));
|
|
|
|
$this->template->set_var('hemail',$hemail);
|
|
|
|
$this->template->set_var('lang_hemail_type',lang('Home EMail Type'));
|
|
|
|
$this->template->set_var('hemail_type',$hemail_type);
|
|
|
|
$this->template->set_var('lang_hstreet',lang('Home Street'));
|
|
|
|
$this->template->set_var('hstreet',$hstreet);
|
|
|
|
$this->template->set_var('lang_hcity',lang('Home City'));
|
|
|
|
$this->template->set_var('hcity',$hcity);
|
|
|
|
$this->template->set_var('lang_hstate',lang('Home State'));
|
|
|
|
$this->template->set_var('hstate',$hstate);
|
|
|
|
$this->template->set_var('lang_hzip',lang('Home Zip Code'));
|
|
|
|
$this->template->set_var('hzip',$hzip);
|
|
|
|
$this->template->set_var('lang_hcountry',lang('Home Country'));
|
|
|
|
if ($countrylist)
|
2001-07-12 06:09:12 +02:00
|
|
|
{
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('hcountry',$GLOBALS['phpgw']->country->form_select($hcountry,'entry[hcountry]'));
|
2001-07-12 06:09:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('hcountry','<input name="entry[hcountry]" value="' . $hcountry . '">');
|
2001-07-12 06:09:12 +02:00
|
|
|
}
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_hadrtype',lang('Address Type'));
|
|
|
|
$this->template->set_var('hadrtype',$hadrtype);
|
2001-07-12 06:09:12 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('create',$create);
|
|
|
|
$this->template->set_var('lang_notes',lang('notes'));
|
|
|
|
$this->template->set_var('notes',$notes);
|
|
|
|
$this->template->set_var('lang_label',lang('label'));
|
|
|
|
$this->template->set_var('label',$label);
|
|
|
|
$this->template->set_var('lang_pubkey',lang('Public Key'));
|
|
|
|
$this->template->set_var('pubkey',$pubkey);
|
|
|
|
$this->template->set_var('access_check',$access_check);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_private',lang('Private'));
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_cats',lang('Category'));
|
|
|
|
$this->template->set_var('cats_link',$cats_link);
|
|
|
|
if ($customfields)
|
2001-07-08 15:54:40 +02:00
|
|
|
{
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->set_var('lang_custom',lang('Custom Fields').':');
|
|
|
|
$this->template->set_var('custom',$custom);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->template->set_var('lang_custom','');
|
|
|
|
$this->template->set_var('custom','');
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
2001-09-03 14:00:38 +02:00
|
|
|
$this->template->set_var('th_bg', $GLOBALS['phpgw_info']['theme']['th_bg']);
|
|
|
|
$this->template->set_var('th_text', $GLOBALS['phpgw_info']['theme']['th_text']);
|
|
|
|
$this->template->set_var('row_on', $GLOBALS['phpgw_info']['theme']['row_on']);
|
|
|
|
$this->template->set_var('row_off', $GLOBALS['phpgw_info']['theme']['row_off']);
|
|
|
|
$this->template->set_var('row_text',$GLOBALS['phpgw_info']['theme']['row_text']);
|
2001-07-08 15:54:40 +02:00
|
|
|
|
2001-07-13 11:03:31 +02:00
|
|
|
$this->template->pfp('out','form');
|
2001-08-04 16:12:32 +02:00
|
|
|
} /* end form function */
|
2001-07-08 15:54:40 +02:00
|
|
|
}
|
|
|
|
?>
|