2005-11-04 00:47:52 +01:00
|
|
|
<?php
|
2006-06-13 06:30:16 +02:00
|
|
|
/**
|
|
|
|
* Addressbook - user interface
|
|
|
|
*
|
|
|
|
* @link www.egroupware.org
|
|
|
|
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @copyright (c) 2005/6 by Cornelius Weiss <egw@von-und-zu-weiss.de> and Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @package addressbook
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2005-11-04 00:47:52 +01:00
|
|
|
|
|
|
|
require_once(EGW_INCLUDE_ROOT.'/addressbook/inc/class.bocontacts.inc.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General user interface object of the adressbook
|
|
|
|
*
|
2005-11-11 21:50:12 +01:00
|
|
|
* @package addressbook
|
2005-11-04 00:47:52 +01:00
|
|
|
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
|
2006-04-23 16:40:31 +02:00
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @copyright (c) 2005/6 by Cornelius Weiss <egw@von-und-zu-weiss.de> and Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2005-11-04 00:47:52 +01:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
*/
|
|
|
|
class uicontacts extends bocontacts
|
|
|
|
{
|
|
|
|
var $public_functions = array(
|
|
|
|
'search' => True,
|
|
|
|
'edit' => True,
|
2005-11-11 21:50:12 +01:00
|
|
|
'view' => True,
|
2006-04-23 16:40:31 +02:00
|
|
|
'index' => True,
|
|
|
|
'photo' => True,
|
2006-06-16 06:44:58 +02:00
|
|
|
'emailpopup'=> True,
|
2006-07-08 02:36:23 +02:00
|
|
|
'migrate2ldap' => True,
|
2005-11-04 00:47:52 +01:00
|
|
|
);
|
2006-04-23 16:40:31 +02:00
|
|
|
var $prefs;
|
|
|
|
/**
|
|
|
|
* var boolean $private_addressbook use a separate private addressbook (former private flag), for contacts not shareable via regular read acl
|
|
|
|
*/
|
|
|
|
var $private_addressbook = false;
|
2006-04-30 11:34:24 +02:00
|
|
|
var $org_views;
|
2005-11-04 00:47:52 +01:00
|
|
|
|
2006-06-17 20:50:07 +02:00
|
|
|
var $config;
|
2006-04-30 20:03:06 +02:00
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
function uicontacts($contact_app='addressbook')
|
|
|
|
{
|
|
|
|
$this->bocontacts($contact_app);
|
2006-04-23 16:40:31 +02:00
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
foreach(array(
|
|
|
|
'tmpl' => 'etemplate.etemplate',
|
|
|
|
) as $my => $app_class)
|
|
|
|
{
|
|
|
|
list(,$class) = explode('.',$app_class);
|
|
|
|
|
|
|
|
if (!is_object($GLOBALS['egw']->$class))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->$class =& CreateObject($app_class);
|
|
|
|
}
|
|
|
|
$this->$my = &$GLOBALS['egw']->$class;
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
$this->prefs =& $GLOBALS['egw_info']['user']['preferences']['addressbook'];
|
2006-06-13 23:53:00 +02:00
|
|
|
$this->private_addressbook = $this->contact_repository == 'sql' && $this->prefs['private_addressbook'];
|
|
|
|
|
2006-04-30 11:34:24 +02:00
|
|
|
$this->org_views = array(
|
|
|
|
'org_name' => lang('Organisations'),
|
|
|
|
'org_name,adr_one_locality' => lang('Organisations by location'),
|
|
|
|
'org_name,org_unit' => lang('Organisations by departments'),
|
|
|
|
);
|
2006-04-23 16:40:31 +02:00
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
// our javascript
|
|
|
|
// to be moved in a seperate file if rewrite is over
|
|
|
|
$GLOBALS['egw_info']['flags']['java_script'] .= $this->js();
|
2006-06-17 20:50:07 +02:00
|
|
|
|
|
|
|
$this->config =& $GLOBALS['egw_info']['server'];
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List contacts of an addressbook
|
|
|
|
*
|
|
|
|
* @param array $content=null submitted content
|
|
|
|
* @param string $msg=null message to show
|
2006-06-16 06:44:58 +02:00
|
|
|
* @param boolean $do_email=false do an email-selection popup or the regular index-page
|
2006-04-23 16:40:31 +02:00
|
|
|
*/
|
2006-06-16 06:44:58 +02:00
|
|
|
function index($content=null,$msg=null,$do_email=false)
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
//echo "<p>uicontacts::index(".print_r($content,true).",'$msg')</p>\n";
|
2006-06-16 06:44:58 +02:00
|
|
|
if (($re_submit = is_array($content)))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-06-16 06:44:58 +02:00
|
|
|
$do_email = $content['do_email'];
|
2005-11-04 00:47:52 +01:00
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
if (isset($content['nm']['rows']['delete'])) // handle a single delete like delete with the checkboxes
|
|
|
|
{
|
|
|
|
list($id) = @each($content['nm']['rows']['delete']);
|
|
|
|
$content['action'] = 'delete';
|
|
|
|
$content['nm']['rows']['checked'] = array($id);
|
|
|
|
}
|
|
|
|
if ($content['action'] !== '')
|
|
|
|
{
|
|
|
|
if (!count($content['nm']['rows']['checked']) && !$content['use_all'])
|
|
|
|
{
|
|
|
|
$msg = lang('You need to select some contacts first');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($this->action($content['action'],$content['nm']['rows']['checked'],$content['use_all'],$success,$failed,$action_msg))
|
|
|
|
{
|
|
|
|
$msg .= lang('%1 contact(s) %2',$success,$action_msg);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$msg .= lang('%1 contact(s) %2, %3 failed because of insufficent rights !!!',$success,$action_msg,$failed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($content['nm']['rows']['view']) // show all contacts of an organisation
|
|
|
|
{
|
|
|
|
list($org_view) = each($content['nm']['rows']['view']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$org_view = $content['nm']['org_view'];
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-06-16 06:44:58 +02:00
|
|
|
$preserv = array(
|
|
|
|
'do_email' => $do_email,
|
|
|
|
);
|
2006-04-23 16:40:31 +02:00
|
|
|
$content = array(
|
|
|
|
'msg' => $msg ? $msg : $_GET['msg'],
|
|
|
|
);
|
2006-06-16 06:44:58 +02:00
|
|
|
$content['nm'] = $GLOBALS['egw']->session->appsession($do_email ? 'email' : 'index','addressbook');
|
2006-04-24 13:15:10 +02:00
|
|
|
if (!is_array($content['nm']))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
|
|
|
$content['nm'] = array(
|
|
|
|
'get_rows' => 'addressbook.uicontacts.get_rows', // I method/callback to request the data for the rows eg. 'notes.bo.get_rows'
|
|
|
|
'bottom_too' => false, // I show the nextmatch-line (arrows, filters, search, ...) again after the rows
|
|
|
|
'never_hide' => True, // I never hide the nextmatch-line if less then maxmatch entrie
|
|
|
|
'start' => 0, // IO position in list
|
|
|
|
'cat_id' => 0, // IO category, if not 'no_cat' => True
|
|
|
|
'search' => '', // IO search pattern
|
|
|
|
'order' => 'n_family', // IO name of the column to sort after (optional for the sortheaders)
|
|
|
|
'sort' => 'ASC', // IO direction of the sort: 'ASC' or 'DESC'
|
|
|
|
'col_filter' => array(), // IO array of column-name value pairs (optional for the filterheaders)
|
2006-06-16 06:44:58 +02:00
|
|
|
'filter_label' => lang('Addressbook'), // I label for filter (optional)
|
2006-06-24 08:09:02 +02:00
|
|
|
'filter' => '', // =All // IO filter, if not 'no_filter' => True
|
2006-04-23 16:40:31 +02:00
|
|
|
'filter_no_lang' => True, // I set no_lang for filter (=dont translate the options)
|
|
|
|
'no_filter2' => True, // I disable the 2. filter (params are the same as for filter)
|
|
|
|
'filter2' => '', // IO filter2, if not 'no_filter2' => True
|
|
|
|
'filter2_no_lang'=> True, // I set no_lang for filter2 (=dont translate the options)
|
|
|
|
'lettersearch' => true,
|
2006-06-16 06:44:58 +02:00
|
|
|
'do_email' => $do_email,
|
2006-04-23 16:40:31 +02:00
|
|
|
);
|
|
|
|
// use the state of the last session stored in the user prefs
|
2006-06-16 06:44:58 +02:00
|
|
|
if (($state = @unserialize($this->prefs[$do_email ? 'email_state' : 'index_state'])))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
|
|
|
$content['nm'] = array_merge($content['nm'],$state);
|
|
|
|
}
|
|
|
|
}
|
2006-06-17 20:50:07 +02:00
|
|
|
if ($do_email)
|
2006-06-16 06:44:58 +02:00
|
|
|
{
|
2006-06-17 20:50:07 +02:00
|
|
|
if (!$re_submit)
|
|
|
|
{
|
|
|
|
$content['nm']['to'] = 'to';
|
|
|
|
$content['nm']['search'] = '@';
|
|
|
|
}
|
|
|
|
$content['nm']['header_left'] = 'addressbook.email.left';
|
|
|
|
}
|
|
|
|
// Organisation stuff is not (yet) availible with ldap
|
|
|
|
elseif($GLOBALS['egw_info']['server']['contact_repository'] != 'ldap')
|
|
|
|
{
|
|
|
|
$content['nm']['header_left'] = 'addressbook.index.left';
|
2006-06-16 06:44:58 +02:00
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
$sel_options = array(
|
|
|
|
'filter' => $this->get_addressbooks(EGW_ACL_READ,lang('All')),
|
2006-06-16 06:44:58 +02:00
|
|
|
'to' => array(
|
|
|
|
'to' => 'To',
|
|
|
|
'cc' => 'Cc',
|
|
|
|
'bcc' => 'Bcc',
|
|
|
|
),
|
2006-04-23 16:40:31 +02:00
|
|
|
);
|
|
|
|
$sel_options['action'] = array(
|
|
|
|
'delete' => lang('Delete'),
|
2006-04-26 23:23:38 +02:00
|
|
|
'csv' => lang('Export as CSV'),
|
2006-07-09 01:02:30 +02:00
|
|
|
'vcard' => lang('Export as VCard'),
|
2006-04-30 11:34:24 +02:00
|
|
|
// ToDo: 'copy' => lang('Copy a contact and edit the copy'),
|
2006-04-23 16:40:31 +02:00
|
|
|
)+$this->get_addressbooks(EGW_ACL_ADD);
|
2006-04-30 11:34:24 +02:00
|
|
|
|
|
|
|
// dont show tid-selection if we have only one content_type
|
|
|
|
if (count($this->content_types) <= 1)
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-05-16 19:02:12 +02:00
|
|
|
$content['nm']['col_filter']['tid'] = 'n';
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['nm']['header_right'] = 'addressbook.index.right';
|
|
|
|
foreach($this->content_types as $tid => $data)
|
|
|
|
{
|
|
|
|
$sel_options['col_filter[tid]'][$tid] = $data['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// get the availible org-views plus the label of the contacts view of one org
|
|
|
|
$sel_options['org_view'] = $this->org_views;
|
|
|
|
if (isset($org_view)) $content['nm']['org_view'] = $org_view;
|
|
|
|
if (!isset($sel_options['org_view'][(string) $content['nm']['org_view']]))
|
|
|
|
{
|
|
|
|
$org_name = array();
|
|
|
|
foreach(explode('|||',$content['nm']['org_view']) as $part)
|
|
|
|
{
|
|
|
|
list(,$name) = explode(':',$part,2);
|
|
|
|
if ($name) $org_name[] = $name;
|
|
|
|
}
|
|
|
|
$org_name = implode(': ',$org_name);
|
|
|
|
$sel_options['org_view'][(string) $content['nm']['org_view']] = $org_name;
|
|
|
|
}
|
|
|
|
$content['nm']['org_view_label'] = $sel_options['org_view'][(string) $content['nm']['org_view']];
|
2006-06-13 23:53:00 +02:00
|
|
|
|
2006-06-16 06:44:58 +02:00
|
|
|
$this->tmpl->read(/*$do_email ? 'addressbook.email' :*/ 'addressbook.index');
|
|
|
|
return $this->tmpl->exec($do_email ? 'addressbook.uicontacts.emailpopup' : 'addressbook.uicontacts.index',
|
|
|
|
$content,$sel_options,$readonlys,$preserv,$do_email ? 2 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Email address-selection popup
|
|
|
|
*
|
|
|
|
* @param array $content=null submitted content
|
|
|
|
* @param string $msg=null message to show
|
|
|
|
*/
|
|
|
|
function emailpopup($content=null,$msg=null)
|
|
|
|
{
|
|
|
|
if ($_GET['compat']) // 1.2 felamimail or old email
|
|
|
|
{
|
|
|
|
$handler = "if (opener.document.doit[to].value != '')
|
|
|
|
{
|
|
|
|
opener.document.doit[to].value += ',';
|
|
|
|
}
|
|
|
|
opener.document.doit[to].value += email";
|
|
|
|
}
|
|
|
|
else // 1.3+ felamimail
|
|
|
|
{
|
|
|
|
$handler = 'opener.addEmail(to,email)';
|
|
|
|
}
|
|
|
|
|
|
|
|
$GLOBALS['egw_info']['flags']['java_script'] .= "
|
|
|
|
<script>
|
|
|
|
window.focus();
|
|
|
|
|
|
|
|
function addEmail(email)
|
|
|
|
{
|
|
|
|
var to = 'to';
|
|
|
|
if (document.getElementById('exec[nm][to][cc]').checked == true)
|
|
|
|
{
|
|
|
|
to = 'cc';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (document.getElementById('exec[nm][to][bcc]').checked == true)
|
|
|
|
{
|
|
|
|
to = 'bcc';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//alert(to+': '+email);
|
|
|
|
$handler;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
";
|
|
|
|
return $this->index($content,$msg,true);
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
/**
|
|
|
|
* apply an action to multiple contacts
|
|
|
|
*
|
|
|
|
* @param string/int $action 'delete', 'vcard', 'csv' or nummerical account_id to move contacts to that addessbook
|
|
|
|
* @param array $checked contact id's to use if !$use_all
|
|
|
|
* @param boolean $use_all if true use all contacts of the current selection (in the session)
|
|
|
|
* @param int &$success number of succeded actions
|
|
|
|
* @param int &$failed number of failed actions (not enought permissions)
|
|
|
|
* @param string &$action_msg translated verb for the actions, to be used in a message like %1 contacts 'deleted'
|
|
|
|
* @return boolean true if all actions succeded, false otherwise
|
|
|
|
*/
|
|
|
|
function action($action,$checked,$use_all,&$success,&$failed,&$action_msg)
|
|
|
|
{
|
|
|
|
//echo "<p>uicontacts::action('$action',".print_r($checked,true).','.(int)$use_all.",...)</p>\n";
|
|
|
|
$success = $failed = 0;
|
|
|
|
|
|
|
|
if ($use_all)
|
|
|
|
{
|
|
|
|
// get the whole selection
|
|
|
|
$query = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
$query['num_rows'] = -1; // all
|
|
|
|
$this->get_rows($query,$checked,$readonlys,true); // true = only return the id's
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
// replace org_name:* id's with all id's of that org
|
|
|
|
$org_contacts = array();
|
|
|
|
foreach($checked as $n => $id)
|
|
|
|
{
|
|
|
|
if (substr($id,0,9) == 'org_name:')
|
|
|
|
{
|
|
|
|
unset($checked[$n]);
|
|
|
|
$query = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
$query['num_rows'] = -1; // all
|
|
|
|
$query['org_view'] = $id;
|
|
|
|
$this->get_rows($query,$extra,$readonlys,true); // true = only return the id's
|
|
|
|
if ($extra[0]) $org_contacts = array_merge($org_contacts,$extra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($org_contacts) $checked = array_unique($checked ? array_merge($checked,$org_contacts) : $org_contacts);
|
|
|
|
//_debug_array($checked); return false;
|
|
|
|
|
2006-04-26 23:23:38 +02:00
|
|
|
switch($action)
|
|
|
|
{
|
|
|
|
case 'csv':
|
|
|
|
$action_msg = lang('exported');
|
|
|
|
$csv_export =& CreateObject('addressbook.csv_export',$this,$this->prefs['csv_charset']);
|
|
|
|
switch ($this->prefs['csv_fields'])
|
|
|
|
{
|
|
|
|
case 'business':
|
|
|
|
$fields = $this->business_contact_fields;
|
|
|
|
break;
|
|
|
|
case 'home':
|
|
|
|
$fields = $this-home_contact_fields;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$fields = $this->contact_fields;
|
|
|
|
foreach($this->customfields as $name => $data)
|
|
|
|
{
|
|
|
|
$fields['#'.$name] = $data['label'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$csv_export->export($checked,$fields);
|
|
|
|
// does not return!
|
|
|
|
$Ok = true;
|
|
|
|
break;
|
2006-07-09 01:02:30 +02:00
|
|
|
|
|
|
|
case 'vcard':
|
|
|
|
$action_msg = lang('exported');
|
|
|
|
ExecMethod('addressbook.vcaladdressbook.export',$checked);
|
|
|
|
// does not return!
|
|
|
|
$Ok = false;
|
|
|
|
break;
|
2006-04-26 23:23:38 +02:00
|
|
|
}
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
foreach($checked as $id)
|
|
|
|
{
|
|
|
|
switch($action)
|
|
|
|
{
|
|
|
|
case 'delete':
|
|
|
|
$action_msg = lang('deleted');
|
|
|
|
if (($Ok = ($contact = $this->read($id)) && $this->check_perms(EGW_ACL_DELETE,$contact)))
|
|
|
|
{
|
|
|
|
if ($contact['owner']) // regular contact
|
|
|
|
{
|
|
|
|
$Ok = $this->delete($id);
|
|
|
|
}
|
2006-06-14 18:53:14 +02:00
|
|
|
// delete single account --> redirect to admin
|
|
|
|
elseif (count($checked) == 1 && $contact['account_id'])
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
|
|
|
$GLOBALS['egw']->redirect_link('/index.php',array(
|
|
|
|
'menuaction' => 'admin.uiaccounts.delete_user',
|
|
|
|
'account_id' => $contact['account_id'],
|
|
|
|
));
|
|
|
|
// this does NOT return!
|
|
|
|
}
|
|
|
|
else // no mass delete of accounts
|
|
|
|
{
|
|
|
|
$Ok = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: // move to an other addressbook
|
2006-09-10 08:40:56 +02:00
|
|
|
if (!is_numeric($action) || !($this->grants[(string) (int) $action] & EGW_ACL_EDIT)) // might be ADD in the future
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$action_msg = lang('moved');
|
|
|
|
if (($OK = ($contact = $this->read($id)) && $this->check_perms(EGW_ACL_DELETE,$contact)))
|
|
|
|
{
|
|
|
|
if (!$contact['owner']) // no mass-change of accounts
|
|
|
|
{
|
|
|
|
$Ok = false;
|
|
|
|
}
|
|
|
|
elseif ($contact['owner'] != $action) // no need to change
|
|
|
|
{
|
|
|
|
$contact['owner'] = (int) $action;
|
|
|
|
$contact['private'] = 0;
|
|
|
|
$Ok = $this->save($contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ($Ok)
|
|
|
|
{
|
|
|
|
++$success;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++$failed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return !$failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rows callback for index nextmatch
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
* @param array &$query
|
|
|
|
* @param array &$rows returned rows/cups
|
|
|
|
* @param array &$readonlys eg. to disable buttons based on acl
|
|
|
|
* @param boolena $id_only=false if true only return (via $rows) an array of contact-ids, dont save state to session
|
|
|
|
* @return int total number of contacts matching the selection
|
|
|
|
*/
|
|
|
|
function get_rows(&$query,&$rows,&$readonlys,$id_only=false)
|
|
|
|
{
|
2006-06-16 06:44:58 +02:00
|
|
|
$do_email = $query['do_email'];
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
//echo "<p>uicontacts::get_rows(".print_r($query,true).")</p>\n";
|
|
|
|
if (!$id_only)
|
|
|
|
{
|
2006-06-13 23:53:00 +02:00
|
|
|
// check if accounts are stored in ldap, which does NOT yet support the org-views
|
|
|
|
if ($this->so_accounts && $query['filter'] === '0' && $query['org_view'])
|
|
|
|
{
|
|
|
|
$old_state = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
if ($old_state['filter'] === '0') // user changed to org_view
|
|
|
|
{
|
|
|
|
$query['filter'] = ''; // --> change filter to all contacts
|
|
|
|
}
|
|
|
|
else // user changed to accounts
|
|
|
|
{
|
|
|
|
$query['org_view'] = ''; // --> change to regular contacts view
|
|
|
|
}
|
|
|
|
unset($old_state);
|
|
|
|
}
|
2006-06-16 06:44:58 +02:00
|
|
|
$GLOBALS['egw']->session->appsession($do_email ? 'email' : 'index','addressbook',$query);
|
2006-04-23 16:40:31 +02:00
|
|
|
// save the state of the index in the user prefs
|
|
|
|
$state = serialize(array(
|
2006-04-30 11:34:24 +02:00
|
|
|
'filter' => $query['filter'],
|
|
|
|
'cat_id' => $query['cat_id'],
|
|
|
|
'order' => $query['order'],
|
|
|
|
'sort' => $query['sort'],
|
2006-04-24 13:15:10 +02:00
|
|
|
'col_filter' => array('tid' => $query['col_filter']['tid']),
|
2006-04-30 11:34:24 +02:00
|
|
|
'org_view' => $query['org_view'],
|
2006-04-23 16:40:31 +02:00
|
|
|
));
|
|
|
|
if ($state != $this->prefs['index_state'])
|
|
|
|
{
|
2006-06-16 06:44:58 +02:00
|
|
|
$GLOBALS['egw']->preferences->add('addressbook',$do_mail ? 'email_state' : 'index_state',$state);
|
2006-06-13 23:53:00 +02:00
|
|
|
// save prefs, but do NOT invalid the cache (unnecessary)
|
|
|
|
$GLOBALS['egw']->preferences->save_repository(false,'user',false);
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($query['col_filter']['cat_id'])) unset($query['col_filter']['cat_id']);
|
|
|
|
if ($query['cat_id'])
|
|
|
|
{
|
|
|
|
if (!is_object($GLOBALS['egw']->categories))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->categories =& CreateObject('phpgwapi.categories');
|
|
|
|
}
|
|
|
|
$cats = $GLOBALS['egw']->categories->return_all_children((int)$query['cat_id']);
|
|
|
|
$query['col_filter']['cat_id'] = count($cats) > 1 ? $cats : $query['cat_id'];
|
|
|
|
}
|
|
|
|
if ($query['filter'] !== '') // not all addressbooks
|
|
|
|
{
|
|
|
|
$query['col_filter']['owner'] = (string) (int) $query['filter'];
|
|
|
|
|
|
|
|
if ($this->private_addressbook)
|
|
|
|
{
|
|
|
|
$query['col_filter']['private'] = substr($query['filter'],-1) == 'p' ? 1 : 0;
|
|
|
|
}
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if (isset($this->org_views[(string) $query['org_view']])) // we have an org view
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$query['template'] = 'addressbook.index.org_rows';
|
|
|
|
|
|
|
|
if ($query['order'] != 'org_name')
|
|
|
|
{
|
|
|
|
$query['sort'] = 'ASC';
|
|
|
|
$query['order'] = 'org_name';
|
|
|
|
}
|
|
|
|
$rows = parent::organisations($query);
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
else // contacts view
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-06-16 06:44:58 +02:00
|
|
|
$query['template'] = $do_email ? 'addressbook.email.rows' : 'addressbook.index.rows';
|
2006-04-30 11:34:24 +02:00
|
|
|
|
|
|
|
if ($query['org_view']) // view the contacts of one organisation only
|
|
|
|
{
|
|
|
|
foreach(explode('|||',$query['org_view']) as $part)
|
|
|
|
{
|
|
|
|
list($name,$value) = explode(':',$part,2);
|
|
|
|
$query['col_filter'][$name] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// translate the select order to the realy used over all 3 columns
|
|
|
|
$sort = $query['sort'];
|
|
|
|
switch($query['order'])
|
|
|
|
{
|
|
|
|
case 'org_name':
|
|
|
|
$order = "org_name $sort,n_family $sort,n_given $sort";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$query['order'] = 'n_family';
|
|
|
|
case 'n_family':
|
|
|
|
$order = "n_family $sort,n_given $sort,org_name $sort";
|
|
|
|
break;
|
|
|
|
case 'n_given':
|
|
|
|
$order = "n_given $sort,n_family $sort,org_name $sort";
|
|
|
|
break;
|
|
|
|
case 'n_fileas':
|
|
|
|
$order = 'n_fileas '.$sort;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ($query['searchletter']) // only show contacts which ordercriteria starts with the given letter
|
|
|
|
{
|
|
|
|
$query['col_filter'][] = $query['order'].' LIKE '.$GLOBALS['egw']->db->quote($query['searchletter'].'%');
|
|
|
|
}
|
|
|
|
else // dont show contacts with empty order criteria
|
|
|
|
{
|
2006-06-13 06:30:16 +02:00
|
|
|
$query['col_filter'][$query['order']] = "!''";
|
2006-04-30 11:34:24 +02:00
|
|
|
}
|
|
|
|
$rows = parent::search($query['search'],$id_only ? array('id','org_name','n_family','n_given','n_fileas') : false,
|
|
|
|
$order,'','%',false,'OR',array((int)$query['start'],(int) $query['num_rows']),$query['col_filter']);
|
2006-06-13 23:53:00 +02:00
|
|
|
|
2006-06-17 20:50:07 +02:00
|
|
|
// do we need the custom fields
|
|
|
|
if (!$id_only && $this->prefs['custom_colum'] != 'never' && $rows && $this->customfields)
|
2006-04-30 11:34:24 +02:00
|
|
|
{
|
|
|
|
foreach((array) $rows as $n => $val)
|
|
|
|
{
|
2006-06-17 20:50:07 +02:00
|
|
|
if ($val && (int)$val['id']) $ids[] = $val['id'];
|
2006-04-30 11:34:24 +02:00
|
|
|
}
|
|
|
|
if ($ids) $customfields = $this->read_customfields($ids);
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if (!$rows) $rows = array();
|
2006-04-23 16:40:31 +02:00
|
|
|
|
2006-04-26 23:23:38 +02:00
|
|
|
if ($id_only)
|
|
|
|
{
|
|
|
|
foreach($rows as $n => $row)
|
|
|
|
{
|
|
|
|
$rows[$n] = $row['id'];
|
|
|
|
}
|
|
|
|
return $this->total; // no need to set other fields or $readonlys
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
$order = $query['order'];
|
|
|
|
|
|
|
|
$readonlys = array();
|
|
|
|
$photos = $homeaddress = false;
|
|
|
|
foreach($rows as $n => $val)
|
|
|
|
{
|
|
|
|
$row =& $rows[$n];
|
|
|
|
|
|
|
|
$given = $row['n_given'] ? $row['n_given'] : ($row['n_prefix'] ? $row['n_prefix'] : '');
|
|
|
|
|
|
|
|
switch($order)
|
|
|
|
{
|
|
|
|
case 'org_name':
|
2006-04-24 13:15:10 +02:00
|
|
|
$row['line1'] = $row['org_name'];
|
|
|
|
$row['line2'] = $row['n_family'].($given ? ', '.$given : '');
|
2006-04-23 16:40:31 +02:00
|
|
|
break;
|
|
|
|
case 'n_family':
|
2006-04-24 13:15:10 +02:00
|
|
|
$row['line1'] = $row['n_family'].($given ? ', '.$given : '');
|
|
|
|
$row['line2'] = $row['org_name'];
|
2006-04-23 16:40:31 +02:00
|
|
|
break;
|
|
|
|
case 'n_given':
|
2006-04-24 13:15:10 +02:00
|
|
|
$row['line1'] = $given.' '.$row['n_family'];
|
|
|
|
$row['line2'] = $row['org_name'];
|
|
|
|
break;
|
|
|
|
case 'n_fileas':
|
|
|
|
list($row['line1'],$row['line2']) = explode(': ',$row['n_fileas']);
|
2006-04-23 16:40:31 +02:00
|
|
|
break;
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if (isset($this->org_views[(string) $query['org_view']]))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$row['type'] = 'home';
|
|
|
|
$row['type_label'] = lang('Organisation');
|
2006-04-23 16:40:31 +02:00
|
|
|
|
2006-04-30 11:34:24 +02:00
|
|
|
$readonlys["delete[$row[id]]"] = $query['filter'] && !($this->grants[(int)$query['filter']] & EGW_ACL_DELETE);
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
else
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$this->type_icon($row['owner'],$row['private'],$row['tid'],$row['type'],$row['type_label']);
|
|
|
|
|
|
|
|
static $tel2show = array('tel_work','tel_cell','tel_home');
|
|
|
|
foreach($tel2show as $name)
|
|
|
|
{
|
2006-04-30 20:03:06 +02:00
|
|
|
$this->call_link($row[$name],$row[$name.'_link']);
|
2006-04-30 11:34:24 +02:00
|
|
|
$row[$name] .= ' '.($row['tel_prefer'] == $name ? '♥' : ''); // .' ' to NOT remove the field
|
|
|
|
}
|
|
|
|
// allways show the prefered phone, if not already shown
|
|
|
|
if (!in_array($row['tel_prefer'],$tel2show) && $row[$row['tel_prefer']])
|
|
|
|
{
|
2006-04-30 20:03:06 +02:00
|
|
|
$this->call_link($row[$row['tel_prefer']],$row['tel_prefered_link']);
|
2006-04-30 11:34:24 +02:00
|
|
|
$row['tel_prefered'] = $row[$row['tel_prefer']].' ♥';
|
|
|
|
}
|
|
|
|
foreach(array('email','email_home') as $name)
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($row[$name])
|
|
|
|
{
|
|
|
|
$row[$name.'_link'] = $this->email2link($row[$name]);
|
|
|
|
if ($GLOBALS['egw_info']['user']['apps']['felamimail'])
|
|
|
|
{
|
|
|
|
$row[$name.'_popup'] = '700x750';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$row[$name] = ' '; // to NOT remove the field
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
$readonlys["delete[$row[id]]"] = !$this->check_perms(EGW_ACL_DELETE,$row);
|
|
|
|
$readonlys["edit[$row[id]]"] = !$this->check_perms(EGW_ACL_EDIT,$row);
|
|
|
|
|
|
|
|
if ($row['photo']) $photos = true;
|
|
|
|
|
|
|
|
if (isset($customfields[$row['id']]))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
foreach($this->customfields as $name => $data)
|
|
|
|
{
|
|
|
|
$row['customfields'][] = $customfields[$row['id']][$name];
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($this->prefs['home_column'] != 'never' && !$homeaddress)
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
foreach(array('adr_two_countryname','adr_two_locality','adr_two_postalcode','adr_two_street','adr_two_street2') as $name)
|
|
|
|
{
|
|
|
|
if ($row[$name]) $homeaddress = true;
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
2006-06-17 20:50:07 +02:00
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
// disable photo column, if view contains no photo(s)
|
|
|
|
if (!$photos || $this->prefs['photo_column'] == 'never') $rows['no_photo'] = '1';
|
|
|
|
// disable customfields column, if we have no customefield(s)
|
|
|
|
if (!$customfields || $this->prefs['custom_column'] == 'never') $rows['no_customfields'] = '1';
|
|
|
|
// disable homeaddress column, if we have no homeaddress(es)
|
|
|
|
if ($homeaddress && !$this->prefs['home_column'] || $this->prefs['home_column'] == 'always') $rows['show_home'] = '1';
|
|
|
|
|
|
|
|
$rows['order'] = $order;
|
2006-04-30 20:03:06 +02:00
|
|
|
$rows['call_popup'] = $this->config['call_popup'];
|
2006-04-23 16:40:31 +02:00
|
|
|
$rows['customfields'] = array_values($this->customfields);
|
|
|
|
|
2006-04-30 11:34:24 +02:00
|
|
|
// full app-header with all search criteria specially for the print
|
2006-04-23 16:40:31 +02:00
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] = lang('addressbook');
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($query['filter'] !== '' && !isset($this->org_views[$query['org_view']]))
|
2006-04-23 16:40:31 +02:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ' '.($query['filter'] == '0' ? lang('accounts') :
|
2006-04-23 16:40:31 +02:00
|
|
|
($GLOBALS['egw']->accounts->get_type($query['filter']) == 'g' ?
|
|
|
|
lang('Group %1',$GLOBALS['egw']->accounts->id2name($query['filter'])) :
|
|
|
|
$GLOBALS['egw']->common->grab_owner_name((int)$query['filter']).
|
|
|
|
(substr($query['filter'],-1) == 'p' ? ' ('.lang('private').')' : '')));
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($query['org_view'])
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ': '.$query['org_view_label'];
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
if ($query['cat_id'])
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ': '.lang('Category').' '.$GLOBALS['egw']->categories->id2name($query['cat_id']);
|
|
|
|
}
|
|
|
|
if ($query['searchletter'])
|
|
|
|
{
|
|
|
|
$order = $order == 'org_name' ? lang('company name') : ($order == 'n_given' ? lang('first name') : lang('last name'));
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ' - '.lang("%1 starts with '%2'",$order,$query['searchletter']);
|
|
|
|
}
|
|
|
|
if ($query['search'])
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] .= ' - '.lang("Search for '%1'",$query['search']);
|
|
|
|
}
|
|
|
|
return $this->total;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get addressbook type icon from owner, private and tid
|
|
|
|
*
|
|
|
|
* @param int $owner user- or group-id or 0 for accounts
|
|
|
|
* @param boolean $private
|
|
|
|
* @param string $tid 'n' for regular addressbook
|
|
|
|
* @param string &$icon icon-name
|
|
|
|
* @param string &$label translated label
|
|
|
|
*/
|
|
|
|
function type_icon($owner,$private,$tid,&$icon,&$label)
|
|
|
|
{
|
|
|
|
if (!$owner)
|
|
|
|
{
|
|
|
|
$icon = 'accounts';
|
|
|
|
$label = lang('accounts');
|
|
|
|
}
|
|
|
|
elseif ($row['private'])
|
|
|
|
{
|
|
|
|
$icon = 'private';
|
|
|
|
$label = lang('private');
|
|
|
|
}
|
|
|
|
elseif ($tid != 'n')
|
|
|
|
{
|
|
|
|
// ToDo Conny: tid-icons
|
|
|
|
$icon = '';
|
|
|
|
$label = $tid;
|
|
|
|
}
|
|
|
|
elseif ($GLOBALS['egw']->accounts->get_type($owner) == 'g')
|
|
|
|
{
|
|
|
|
$icon = 'group';
|
|
|
|
$label = lang('group %1',$GLOBALS['egw']->accounts->id2name($owner));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$icon = 'personal';
|
|
|
|
$label = $owner == $this->user ? lang('personal') : $GLOBALS['egw']->common->grab_owner_name($owner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the availible addressbooks of the user
|
|
|
|
*
|
|
|
|
* @param int $required=EGW_ACL_READ required rights on the addressbook
|
|
|
|
* @param string $extra_label first label if given (already translated)
|
|
|
|
* @return array with owner => label pairs
|
|
|
|
*/
|
|
|
|
function get_addressbooks($required=EGW_ACL_READ,$extra_label=null)
|
|
|
|
{
|
|
|
|
//echo "uicontacts::get_addressbooks($required,$include_all) grants="; _debug_array($this->grants);
|
|
|
|
|
|
|
|
$addressbooks = array();
|
|
|
|
if ($extra_label) $addressbooks[''] = $extra_label;
|
|
|
|
$addressbooks[$this->user] = lang('Personal');
|
|
|
|
// add all group addressbooks the user has the necessary rights too
|
|
|
|
foreach($this->grants as $uid => $rights)
|
|
|
|
{
|
|
|
|
if (($rights & $required) && $GLOBALS['egw']->accounts->get_type($uid) == 'g')
|
|
|
|
{
|
|
|
|
$addressbooks[$uid] = lang('Group %1',$GLOBALS['egw']->accounts->id2name($uid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this->grants[0] & $required)
|
|
|
|
{
|
|
|
|
$addressbooks[0] = lang('Accounts');
|
|
|
|
}
|
|
|
|
// add all other user addressbooks the user has the necessary rights too
|
|
|
|
foreach($this->grants as $uid => $rights)
|
|
|
|
{
|
|
|
|
if ($uid != $this->user && ($rights & $required) && $GLOBALS['egw']->accounts->get_type($uid) == 'u')
|
|
|
|
{
|
|
|
|
$addressbooks[$uid] = $GLOBALS['egw']->common->grab_owner_name($uid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this->private_addressbook)
|
|
|
|
{
|
|
|
|
$addressbooks[$this->user.'p'] = lang('Private');
|
|
|
|
}
|
|
|
|
//_debug_array($addressbooks);
|
|
|
|
return $addressbooks;
|
|
|
|
}
|
|
|
|
|
2005-11-11 21:50:12 +01:00
|
|
|
/**
|
2005-11-13 18:51:41 +01:00
|
|
|
* Edit a contact
|
2005-11-11 21:50:12 +01:00
|
|
|
*
|
2005-11-13 18:51:41 +01:00
|
|
|
* @param array $content=null submitted content
|
2005-11-11 21:50:12 +01:00
|
|
|
* @param int $_GET['contact_id'] contact_id manly for popup use
|
|
|
|
* @param bool $_GET['makecp'] ture if you want do copy the contact given by $_GET['contact_id']
|
|
|
|
*/
|
2005-11-13 18:51:41 +01:00
|
|
|
function edit($content=null)
|
2005-11-04 00:47:52 +01:00
|
|
|
{
|
2005-11-23 18:07:33 +01:00
|
|
|
if (!is_object($this->link))
|
|
|
|
{
|
|
|
|
if (!is_object($GLOBALS['egw']->link))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->link =& CreateObject('phpgwapi.bolink');
|
|
|
|
}
|
|
|
|
$this->link =& $GLOBALS['egw']->link;
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
if (is_array($content))
|
|
|
|
{
|
2006-03-14 15:26:55 +01:00
|
|
|
list($button) = @each($content['button']);
|
2006-04-23 16:40:31 +02:00
|
|
|
unset($content['button']);
|
|
|
|
$content['private'] = (int) ($content['owner'] && substr($content['owner'],-1) == 'p');
|
|
|
|
$content['owner'] = (string) (int) $content['owner'];
|
|
|
|
|
2005-11-13 18:51:41 +01:00
|
|
|
switch($button)
|
2005-11-04 00:47:52 +01:00
|
|
|
{
|
2005-11-13 18:51:41 +01:00
|
|
|
case 'save':
|
|
|
|
case 'apply':
|
2006-08-29 06:18:32 +02:00
|
|
|
if ($content['delete_photo']) $content['jpegphoto'] = null;
|
2006-04-23 16:40:31 +02:00
|
|
|
if (is_array($content['upload_photo']) && !empty($content['upload_photo']['tmp_name']) &&
|
|
|
|
$content['upload_photo']['tmp_name'] != 'none')
|
|
|
|
{
|
|
|
|
$content['jpegphoto'] = $this->resize_photo($content['upload_photo']);
|
|
|
|
}
|
2005-11-13 19:22:43 +01:00
|
|
|
$links = false;
|
|
|
|
if (!$content['id'] && is_array($content['link_to']['to_id']))
|
|
|
|
{
|
|
|
|
$links = $content['link_to']['to_id'];
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
if ($content['id'] && $content['org_name'] && $content['change_org'])
|
|
|
|
{
|
|
|
|
$old_org_entry = $this->read($content['id']);
|
|
|
|
}
|
|
|
|
if ($this->save($content))
|
|
|
|
{
|
|
|
|
$content['msg'] = lang('Contact saved');
|
|
|
|
if ($content['change_org'] && $old_org_entry && ($changed = $this->changed_fields($old_org_entry,$content,true)) &&
|
|
|
|
($members = $this->org_similar($old_org_entry['org_name'],$changed)))
|
|
|
|
{
|
|
|
|
//foreach($changed as $name => $old_value) echo "<p>$name: '$old_value' --> '{$content[$name]}'</p>\n";
|
|
|
|
list($changed_members,$changed_fields,$failed_members) = $this->change_org($old_org_entry['org_name'],$changed,$content,$members);
|
|
|
|
if ($changed_members)
|
|
|
|
{
|
|
|
|
$content['msg'] .= ', '.lang('%1 fields in %2 other organisation member(s) changed',$changed_fields,$changed_members);
|
|
|
|
}
|
|
|
|
if ($failed_members)
|
|
|
|
{
|
|
|
|
$content['msg'] .= ', '.lang('failed to change %1 organisation member(s) (insufficent rights) !!!',$failed_members);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-06-13 23:53:00 +02:00
|
|
|
$content['msg'] = lang('Error saving the contact !!!').
|
|
|
|
($this->error ? ' '.$this->error : '');
|
2006-04-30 11:34:24 +02:00
|
|
|
$button = 'apply'; // to not leave the dialog
|
|
|
|
}
|
2005-11-13 19:22:43 +01:00
|
|
|
// writing links for new entry, existing ones are handled by the widget itself
|
|
|
|
if ($links && $content['id'])
|
|
|
|
{
|
|
|
|
$this->link->link('addressbook',$content['id'],$links);
|
|
|
|
}
|
|
|
|
if ($button == 'save')
|
|
|
|
{
|
2006-04-23 16:40:31 +02:00
|
|
|
echo "<html><body><script>var referer = opener.location;opener.location.href = referer+(referer.search?'&':'?')+'msg=".
|
2006-04-30 11:34:24 +02:00
|
|
|
addslashes(urlencode($content['msg']))."'; window.close();</script></body></html>\n";
|
2005-11-13 19:22:43 +01:00
|
|
|
$GLOBALS['egw']->common->egw_exit();
|
|
|
|
}
|
2005-11-23 18:07:33 +01:00
|
|
|
$content['link_to']['to_id'] = $content['id'];
|
2006-06-16 06:44:58 +02:00
|
|
|
$GLOBALS['egw_info']['flags']['java_script'] .= "<script language=\"JavaScript\">
|
2005-11-13 18:51:41 +01:00
|
|
|
var referer = opener.location;
|
2006-04-30 11:34:24 +02:00
|
|
|
opener.location.href = referer+(referer.search?'&':'?')+'msg=".addslashes(urlencode($content['msg']))."';</script>";
|
2005-11-13 18:51:41 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
2006-04-30 11:34:24 +02:00
|
|
|
if($this->delete($content))
|
2005-11-13 18:51:41 +01:00
|
|
|
{
|
2006-04-23 16:40:31 +02:00
|
|
|
echo "<html><body><script>var referer = opener.location; opener.location.href = referer+(referer.search?'&':'?')+'msg=".
|
2006-04-30 11:34:24 +02:00
|
|
|
addslashes(urlencode(lang('Contact deleted')))."';window.close();</script></body></html>\n";
|
2005-11-13 18:51:41 +01:00
|
|
|
$GLOBALS['egw']->common->egw_exit();
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['msg'] = lang('Error deleting the contact !!!');
|
|
|
|
}
|
2005-11-13 18:51:41 +01:00
|
|
|
break;
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
2006-03-14 15:26:55 +01:00
|
|
|
// type change
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content = array();
|
2006-04-23 16:40:31 +02:00
|
|
|
$contact_id = $_GET['contact_id'] ? $_GET['contact_id'] : ((int)$_GET['account_id'] ? 'account:'.(int)$_GET['account_id'] : 0);
|
2005-12-01 18:21:38 +01:00
|
|
|
$view = $_GET['view'];
|
2006-04-23 16:40:31 +02:00
|
|
|
// new contact --> set some defaults
|
|
|
|
if ($contact_id && is_array($content = $this->read($contact_id)))
|
2005-11-04 00:47:52 +01:00
|
|
|
{
|
2006-04-23 16:40:31 +02:00
|
|
|
$contact_id = $content['id']; // it could have been: "account:$account_id"
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
else // not found
|
2005-12-01 18:21:38 +01:00
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$state = $GLOBALS['egw']->session->appsession('index','addressbook');
|
|
|
|
// check if we create the new contact in an existing org
|
|
|
|
if ($_GET['org'])
|
|
|
|
{
|
|
|
|
$content = $this->read_org($_GET['org']);
|
|
|
|
}
|
|
|
|
elseif ($state['org_view'] && !isset($this->org_views[$state['org_view']]))
|
|
|
|
{
|
|
|
|
$content = $this->read_org($state['org_view']);
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
if (isset($_GET['owner']) && $_GET['owner'] !== '')
|
|
|
|
{
|
|
|
|
$content['owner'] = $_GET['owner'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['owner'] = $state['filter'];
|
|
|
|
}
|
|
|
|
$content['private'] = (int) ($content['owner'] && substr($content['owner'],-1) == 'p');
|
|
|
|
if (!($this->grants[$content['owner'] = (string) (int) $content['owner']] & EGW_ACL_ADD))
|
|
|
|
{
|
|
|
|
$content['owner'] = (string) $this->user;
|
|
|
|
}
|
2006-03-14 15:26:55 +01:00
|
|
|
$new_type = array_keys($this->content_types);
|
|
|
|
$content['tid'] = $_GET['typeid'] ? $_GET['typeid'] : $new_type[0];
|
2006-08-24 18:06:45 +02:00
|
|
|
foreach($this->get_contact_columns() as $field)
|
2005-12-01 18:21:38 +01:00
|
|
|
{
|
|
|
|
if ($_GET['presets'][$field]) $content[$field] = $_GET['presets'][$field];
|
|
|
|
}
|
2006-04-23 16:40:31 +02:00
|
|
|
$content['creator'] = $this->user;
|
|
|
|
$content['created'] = $this->now_su;
|
2006-04-30 11:34:24 +02:00
|
|
|
unset($state);
|
2005-12-01 18:21:38 +01:00
|
|
|
}
|
|
|
|
|
2005-11-23 18:07:33 +01:00
|
|
|
if($content && $_GET['makecp']) // copy the contact
|
|
|
|
{
|
|
|
|
$content['link_to']['to_id'] = 0;
|
|
|
|
$this->link->link('addressbook',$content['link_to']['to_id'],'addressbook',$content['id'],
|
|
|
|
lang('Copied by %1, from record #%2.',$GLOBALS['egw']->common->display_fullname('',
|
|
|
|
$GLOBALS['egw_info']['user']['account_firstname'],$GLOBALS['egw_info']['user']['account_lastname']),
|
|
|
|
$content['id']));
|
|
|
|
unset($content['id']);
|
2006-04-23 16:40:31 +02:00
|
|
|
$content['creator'] = $this->user;
|
|
|
|
$content['created'] = $this->now_su;
|
2005-11-23 18:07:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-23 16:40:31 +02:00
|
|
|
$content['link_to']['to_id'] = $contact_id;
|
2005-11-23 18:07:33 +01:00
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
2006-07-07 01:01:29 +02:00
|
|
|
$content['disable_change_org'] = $view || !$content['org_name'];
|
2005-11-04 00:47:52 +01:00
|
|
|
//_debug_array($content);
|
2005-11-11 21:50:12 +01:00
|
|
|
$readonlys['button[delete]'] = !$this->check_perms(EGW_ACL_DELETE,$content);
|
2005-11-13 18:51:41 +01:00
|
|
|
$readonlys['button[copy]'] = $readonlys['button[edit]'] = $readonlys['button[vcard]'] = true;
|
2005-11-11 21:50:12 +01:00
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
$sel_options['fileas_type'] = $this->fileas_options($content);
|
|
|
|
$sel_options['owner'] = $this->get_addressbooks(EGW_ACL_ADD);
|
|
|
|
if ((string) $content['owner'] !== '')
|
|
|
|
{
|
|
|
|
if (!isset($sel_options['owner'][(int)$content['owner']]))
|
|
|
|
{
|
2006-04-25 14:43:41 +02:00
|
|
|
$sel_options['owner'][(int)$content['owner']] = !$content['owner'] ? lang('Accounts') :
|
|
|
|
$GLOBALS['egw']->common->grab_owner_name($content['owner']);
|
2006-04-23 16:40:31 +02:00
|
|
|
}
|
|
|
|
$readonlys['owner'] = !$content['owner'] || // dont allow to move accounts, as this mean deleting the user incl. all content he owns
|
|
|
|
!$this->check_perms(EGW_ACL_DELETE,$content); // you need delete rights to move a contact into an other addressbook
|
|
|
|
}
|
2006-06-13 06:30:16 +02:00
|
|
|
// set the unsupported fields from the backend to readonly
|
|
|
|
foreach($this->get_fields('unsupported',$content['id'],$content['owner']) as $field)
|
|
|
|
{
|
|
|
|
$readonlys[$field] = true;
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
for($i = -23; $i<=23; $i++) $tz[$i] = ($i > 0 ? '+' : '').$i;
|
|
|
|
$sel_options['tz'] = $tz;
|
|
|
|
$content['tz'] = $content['tz'] ? $content['tz'] : 0;
|
2006-04-30 11:34:24 +02:00
|
|
|
if (count($this->content_types) > 1)
|
|
|
|
{
|
|
|
|
foreach($this->content_types as $type => $data)
|
|
|
|
{
|
|
|
|
$sel_options['tid'][$type] = $data['name'];
|
|
|
|
}
|
|
|
|
$content['typegfx'] = $GLOBALS['egw']->html->image('addressbook',$this->content_types[$content['tid']]['options']['icon'],'',' width="16px" height="16px"');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['no_tid'] = true;
|
|
|
|
}
|
|
|
|
/* Conny: what's that?
|
2006-03-14 15:26:55 +01:00
|
|
|
foreach($GLOBALS['egw']->acl->get_all_location_rights($GLOBALS['egw']->acl->account_id,'addressbook',true) as $id => $right)
|
|
|
|
{
|
|
|
|
if($id < 0) $sel_options['published_groups'][$id] = $GLOBALS['egw']->accounts->id2name($id);
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
*/
|
2005-11-23 18:07:33 +01:00
|
|
|
$content['link_to'] = array(
|
2005-11-13 19:22:43 +01:00
|
|
|
'to_app' => 'addressbook',
|
2005-11-23 18:07:33 +01:00
|
|
|
'to_id' => $content['link_to']['to_id'],
|
2005-11-13 19:22:43 +01:00
|
|
|
);
|
2006-04-23 16:40:31 +02:00
|
|
|
$content['photo'] = $this->photo_src($content['id'],$content['jpegphoto'],'template');
|
|
|
|
|
|
|
|
if ($content['private']) $content['owner'] .= 'p';
|
|
|
|
|
|
|
|
$GLOBALS['egw_info']['flags']['include_xajax'] = true;
|
|
|
|
|
2006-03-14 15:26:55 +01:00
|
|
|
$this->tmpl->read($this->content_types[$content['tid']]['options']['template']);
|
2006-04-23 16:40:31 +02:00
|
|
|
return $this->tmpl->exec('addressbook.uicontacts.edit',$content,$sel_options,$readonlys,$content, 2);
|
2005-11-11 21:50:12 +01:00
|
|
|
}
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
function ajax_setFileasOptions($n_prefix,$n_given,$n_middle,$n_family,$n_suffix,$org_name)
|
|
|
|
{
|
|
|
|
$names = array(
|
|
|
|
'n_prefix' => $n_prefix,
|
|
|
|
'n_given' => $n_given,
|
|
|
|
'n_middle' => $n_middle,
|
|
|
|
'n_family' => $n_family,
|
|
|
|
'n_suffix' => $n_suffix,
|
|
|
|
'org_name' => $org_name,
|
|
|
|
);
|
|
|
|
$response =& new xajaxResponse();
|
|
|
|
$response->addScript("setOptions('".addslashes(implode("\b",$this->fileas_options($names)))."');");
|
|
|
|
|
|
|
|
return $response->getXML();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* resizes the uploaded photo to 60*80 pixel and returns it
|
|
|
|
*
|
|
|
|
* @param array $file info uploaded file
|
|
|
|
* @return string with resized jpeg photo
|
|
|
|
*/
|
|
|
|
function resize_photo($file)
|
|
|
|
{
|
|
|
|
switch($file['type'])
|
|
|
|
{
|
|
|
|
case 'image/gif':
|
|
|
|
$upload = imagecreatefromgif($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/pjpeg':
|
|
|
|
$upload = imagecreatefromjpeg($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
case 'image/png':
|
|
|
|
case 'image/x-png':
|
|
|
|
$upload = imagecreatefrompng($file['tmp_name']);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (!$upload) return null;
|
|
|
|
|
|
|
|
list($src_w,$src_h) = getimagesize($file['tmp_name']);
|
|
|
|
|
|
|
|
// scale the image to a width of 60 and a height according to the proportion of the source image
|
|
|
|
$photo = imagecreatetruecolor($dst_w = 60,$dst_h = round($src_h * 60 / $src_w));
|
|
|
|
imagecopyresized($photo,$upload,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);
|
|
|
|
//echo "<p>imagecopyresized(\$photo,\$upload,0,0,0,0,$dst_w,$dst_h,$src_w,$src_h);</p>\n";
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
imagejpeg($photo,'',90);
|
|
|
|
$jpeg = ob_get_contents();
|
|
|
|
ob_end_clean();
|
|
|
|
|
|
|
|
imagedestroy($photo);
|
|
|
|
imagedestroy($upload);
|
|
|
|
|
|
|
|
return $jpeg;
|
|
|
|
}
|
|
|
|
|
2005-11-13 18:51:41 +01:00
|
|
|
function view($content=null)
|
2005-11-11 21:50:12 +01:00
|
|
|
{
|
|
|
|
if(is_array($content))
|
|
|
|
{
|
2005-11-13 18:51:41 +01:00
|
|
|
list($button) = each($content['button']);
|
|
|
|
switch ($button)
|
2005-11-11 21:50:12 +01:00
|
|
|
{
|
2005-11-13 18:51:41 +01:00
|
|
|
case 'vcard':
|
|
|
|
$GLOBALS['egw']->redirect_link('/index.php','menuaction=addressbook.uivcard.out&ab_id=' .$content['id']);
|
|
|
|
|
|
|
|
case 'cancel':
|
2006-04-23 16:40:31 +02:00
|
|
|
$GLOBALS['egw']->redirect_link('/index.php','menuaction=addressbook.uicontacts.index');
|
2005-11-13 18:51:41 +01:00
|
|
|
|
|
|
|
case 'delete':
|
2006-03-28 13:41:48 +02:00
|
|
|
$GLOBALS['egw']->redirect_link('/index.php',array(
|
2006-04-23 16:40:31 +02:00
|
|
|
'menuaction' => 'addressbook.uicontacts.index',
|
2006-04-30 11:34:24 +02:00
|
|
|
'msg' => $this->delete($content) ? lang('Error deleting the contact !!!') : lang('Contact deleted'),
|
2006-03-28 13:41:48 +02:00
|
|
|
));
|
2005-11-11 21:50:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-23 16:40:31 +02:00
|
|
|
if(!$_GET['contact_id'] || !is_array($content = $this->read($_GET['contact_id'])))
|
2006-03-28 13:41:48 +02:00
|
|
|
{
|
|
|
|
$GLOBALS['egw']->redirect_link('/index.php',array(
|
2006-04-23 16:40:31 +02:00
|
|
|
'menuaction' => 'addressbook.uicontacts.index',
|
2006-03-28 13:41:48 +02:00
|
|
|
'msg' => $content,
|
|
|
|
));
|
|
|
|
}
|
2005-11-11 21:50:12 +01:00
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
foreach(array_keys($this->contact_fields) as $key)
|
2005-11-11 21:50:12 +01:00
|
|
|
{
|
2005-11-13 18:51:41 +01:00
|
|
|
$readonlys[$key] = true;
|
|
|
|
if (in_array($key,array('tel_home','tel_work','tel_cell')))
|
|
|
|
{
|
|
|
|
$readonlys[$key.'2'] = true;
|
|
|
|
$content[$key.'2'] = $content[$key];
|
|
|
|
}
|
2005-11-11 21:50:12 +01:00
|
|
|
}
|
2005-11-13 18:51:41 +01:00
|
|
|
$content['view'] = true;
|
2005-11-23 18:07:33 +01:00
|
|
|
$content['link_to'] = array(
|
2005-11-14 18:46:23 +01:00
|
|
|
'to_app' => 'addressbook',
|
|
|
|
'to_id' => $content['id'],
|
|
|
|
);
|
2006-05-17 05:04:03 +02:00
|
|
|
$readonlys['link_to'] = $readonlys['customfields'] = $readonlys['fileas_type'] = true;
|
2006-04-23 16:40:31 +02:00
|
|
|
$readonlys['button[save]'] = $readonlys['button[apply]'] = $readonlys['change_photo'] = true;
|
2005-11-11 21:50:12 +01:00
|
|
|
$readonlys['button[delete]'] = !$this->check_perms(EGW_ACL_DELETE,$content);
|
2005-11-13 18:51:41 +01:00
|
|
|
$readonlys['button[edit]'] = !$this->check_perms(EGW_ACL_EDIT,$content);
|
2006-04-30 11:34:24 +02:00
|
|
|
// ToDo: fix vCard export
|
|
|
|
$readonlys['button[vcard]'] = true;
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
$sel_options['fileas_type'][$content['fileas_type']] = $this->fileas($content);
|
|
|
|
$sel_options['owner'] = $this->get_addressbooks();
|
2006-03-14 15:26:55 +01:00
|
|
|
for($i = -23; $i<=23; $i++) $tz[$i] = ($i > 0 ? '+' : '').$i;
|
|
|
|
$sel_options['tz'] = $tz;
|
|
|
|
$content['tz'] = $content['tz'] ? $content['tz'] : 0;
|
2006-04-30 11:34:24 +02:00
|
|
|
if (count($this->content_types) > 1)
|
|
|
|
{
|
|
|
|
foreach($this->content_types as $type => $data)
|
|
|
|
{
|
|
|
|
$sel_options['tid'][$type] = $data['name'];
|
|
|
|
}
|
|
|
|
$content['typegfx'] = $GLOBALS['egw']->html->image('addressbook',$this->content_types[$content['tid']]['options']['icon'],'',' width="16px" height="16px"');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$content['no_tid'] = true;
|
|
|
|
}
|
|
|
|
/* Conny: what's that?
|
2006-03-14 15:26:55 +01:00
|
|
|
foreach(explode(',',$content['published_groups']) as $id)
|
|
|
|
{
|
|
|
|
$sel_options['published_groups'][$id] = $GLOBALS['egw']->accounts->id2name($id);
|
|
|
|
}
|
2006-04-30 11:34:24 +02:00
|
|
|
*/
|
2006-03-14 15:26:55 +01:00
|
|
|
$this->tmpl->read($this->content_types[$content['tid']]['options']['template']);
|
2006-04-30 11:34:24 +02:00
|
|
|
foreach(array('email','email_home','url','url_home') as $name)
|
2005-11-18 18:03:23 +01:00
|
|
|
{
|
|
|
|
if ($content[$name] )
|
|
|
|
{
|
2006-04-30 11:34:24 +02:00
|
|
|
$url = substr($name,0,3) == 'url' ? $content[$name] : $this->email2link($content[$name]);
|
2005-11-18 18:03:23 +01:00
|
|
|
if (!is_array($url))
|
|
|
|
{
|
|
|
|
$this->tmpl->set_cell_attribute($name,'size','b,,1');
|
|
|
|
}
|
|
|
|
elseif ($url)
|
|
|
|
{
|
|
|
|
$content[$name.'_link'] = $url;
|
2006-04-23 16:40:31 +02:00
|
|
|
$this->tmpl->set_cell_attribute($name,'size','b,@'.$name.'_link,,,_blank'.
|
|
|
|
($GLOBALS['egw_info']['user']['apps']['felamimail']?',700x750':''));
|
2005-11-18 18:03:23 +01:00
|
|
|
}
|
|
|
|
$this->tmpl->set_cell_attribute($name,'type','label');
|
|
|
|
$this->tmpl->set_cell_attribute($name,'no_lang',true);
|
|
|
|
}
|
|
|
|
}
|
2005-11-11 21:50:12 +01:00
|
|
|
$this->tmpl->exec('addressbook.uicontacts.view',$content,$sel_options,$readonlys,array('id' => $content['id']));
|
|
|
|
|
|
|
|
$GLOBALS['egw']->hooks->process(array(
|
|
|
|
'location' => 'addressbook_view',
|
|
|
|
'ab_id' => $content['id']
|
|
|
|
));
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
|
2005-11-18 18:03:23 +01:00
|
|
|
/**
|
|
|
|
* convert email-address in compose link
|
|
|
|
*
|
|
|
|
* @param string $email email-addresse
|
|
|
|
* @return array/string array with get-params or mailto:$email, or '' or no mail addresse
|
|
|
|
*/
|
|
|
|
function email2link($email)
|
|
|
|
{
|
|
|
|
if (!strstr($email,'@')) return '';
|
|
|
|
|
|
|
|
if($GLOBALS['egw_info']['user']['apps']['felamimail'])
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'menuaction' => 'felamimail.uicompose.compose',
|
|
|
|
'send_to' => base64_encode($email)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if($GLOBALS['egw_info']['user']['apps']['email'])
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'menuaction' => 'email.uicompose.compose',
|
|
|
|
'to' => $email,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return 'mailto:' . $email;
|
|
|
|
}
|
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
function search($content='')
|
|
|
|
{
|
2005-11-09 20:15:22 +01:00
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] = lang('Addressbook'). ' - '. lang('Advanced search');
|
2005-11-04 00:47:52 +01:00
|
|
|
if(!($GLOBALS['egw_info']['server']['contact_repository'] == 'sql' || !isset($GLOBALS['egw_info']['server']['contact_repository'])))
|
|
|
|
{
|
2006-04-24 22:52:14 +02:00
|
|
|
$GLOBALS['egw']->common->egw_header();
|
2005-11-04 00:47:52 +01:00
|
|
|
echo parse_navbar();
|
|
|
|
echo '<p> Advanced Search is not supported for ldap storage yet. Sorry! </p>';
|
|
|
|
$GLOBALS['egw']->common->egw_exit();
|
|
|
|
}
|
|
|
|
|
2006-04-05 15:53:37 +02:00
|
|
|
$content['advs']['msg'] = lang('Please select only one category');
|
2005-11-04 00:47:52 +01:00
|
|
|
// This is no fun yet, as we dont have a sortorder in prefs now, AND as we are not able to sort within cf.
|
|
|
|
// $prefs = $GLOBALS['egw']->preferences->read_repository();
|
|
|
|
// foreach($prefs['addressbook'] as $key => $value)
|
|
|
|
// {
|
|
|
|
// if($value == 'addressbook_on') $content['advs']['colums_to_present'][$key] = lang($key);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// echo 'addressbook.uicontacts.search->content:'; _debug_array($content);
|
|
|
|
$content['advs']['hidebuttons'] = true;
|
|
|
|
$content['advs']['input_template'] = 'addressbook.edit';
|
|
|
|
$content['advs']['search_method'] = 'addressbook.bocontacts.search';
|
|
|
|
$content['advs']['search_class_constructor'] = $contact_app;
|
|
|
|
$content['advs']['colums_to_present'] = array(
|
|
|
|
'id' => 'id',
|
|
|
|
'n_given' => lang('first name'),
|
|
|
|
'n_family' => lang('last name'),
|
|
|
|
'email_home' => lang('home email'),
|
2005-11-08 00:06:16 +01:00
|
|
|
'email' => lang('work email'),
|
2005-11-04 00:47:52 +01:00
|
|
|
'tel_home' => lang('tel home'),
|
|
|
|
);
|
2005-11-09 20:15:22 +01:00
|
|
|
|
|
|
|
$content['advs']['row_actions'] = array(
|
2005-12-18 20:06:32 +01:00
|
|
|
'view' => array(
|
|
|
|
'type' => 'button',
|
|
|
|
'options' => array(
|
|
|
|
'size' => 'view',
|
|
|
|
'onclick' => "location.href='".$GLOBALS['egw']->link('/index.php',
|
|
|
|
array('menuaction' => 'addressbook.uicontacts.view',)).'&contact_id=$row_cont[id]\';return false;',
|
|
|
|
)),
|
2005-11-09 20:15:22 +01:00
|
|
|
'edit' => array(
|
|
|
|
'type' => 'button',
|
|
|
|
'options' => array(
|
|
|
|
'size' => 'edit',
|
|
|
|
'onclick' => 'window.open(\''.
|
|
|
|
$GLOBALS['egw']->link('/index.php?menuaction=addressbook.uicontacts.edit').
|
2006-03-01 20:32:31 +01:00
|
|
|
'&contact_id=$row_cont[id] \',\'\',\'dependent=yes,width=850,height=440,location=no,menubar=no,toolbar=no,scrollbars=yes,status=yes\');
|
2005-11-09 20:15:22 +01:00
|
|
|
return false;',
|
|
|
|
)),
|
|
|
|
'delete' => array(
|
|
|
|
'type' => 'button',
|
|
|
|
'method' => 'addressbook.bocontacts.delete',
|
|
|
|
'options' => array(
|
|
|
|
'size' => 'delete',
|
|
|
|
'onclick' => 'if(!confirm(\''. lang('Do your really want to delete this contact?'). '\')) return false;',
|
|
|
|
)),
|
|
|
|
);
|
2005-11-08 00:06:16 +01:00
|
|
|
/* $content['advs']['actions']['email'] = array(
|
|
|
|
'type' => 'button',
|
|
|
|
'options' => array(
|
|
|
|
'label' => lang('email'),
|
|
|
|
'no_lang' => true,
|
|
|
|
));
|
|
|
|
$content['advs']['actions']['export'] = array(
|
|
|
|
'type' => 'button',
|
|
|
|
'options' => array(
|
|
|
|
'label' => lang('export'),
|
|
|
|
'no_lang' => true,
|
|
|
|
));*/
|
|
|
|
$content['advs']['actions']['delete'] = array(
|
2005-11-04 00:47:52 +01:00
|
|
|
'type' => 'button',
|
|
|
|
'method' => 'addressbook.bocontacts.delete',
|
|
|
|
'options' => array(
|
|
|
|
'label' => lang('delete'),
|
|
|
|
'no_lang' => true,
|
2005-11-08 00:06:16 +01:00
|
|
|
'onclick' => 'if(!confirm(\''. lang('WARNING: All contacts found will be deleted!'). '\')) return false;',
|
|
|
|
));
|
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
for($i = -23; $i<=23; $i++) $tz[$i] = ($i > 0 ? '+' : '').$i;
|
|
|
|
$sel_options['tz'] = $tz + array('' => lang('doesn\'t matter'));
|
2006-03-14 15:26:55 +01:00
|
|
|
$sel_options['tid'][] = lang('all');
|
|
|
|
//foreach($this->content_types as $type => $data) $sel_options['tid'][$type] = $data['name'];
|
2006-04-24 22:52:14 +02:00
|
|
|
|
|
|
|
// some changes for the new addressbook
|
|
|
|
$sel_options['owner'] = $this->get_addressbooks(EGW_ACL_READ,lang('all'));
|
|
|
|
$readonlys['change_photo'] = true;
|
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
$this->tmpl->read('addressbook.search');
|
2005-11-11 21:50:12 +01:00
|
|
|
return $this->tmpl->exec('addressbook.uicontacts.search',$content,$sel_options,$readonlys,$preserv);
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
2006-04-30 20:03:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* download photo of the given ($_GET['contact_id'] or $_GET['account_id']) contact
|
|
|
|
*/
|
2006-04-23 16:40:31 +02:00
|
|
|
function photo()
|
|
|
|
{
|
|
|
|
ob_start();
|
|
|
|
$contact_id = isset($_GET['contact_id']) ? $_GET['contact_id'] :
|
|
|
|
(isset($_GET['account_id']) ? 'account:'.$_GET['account_id'] : 0);
|
|
|
|
|
|
|
|
if (substr($contact_id,0,8) == 'account:')
|
|
|
|
{
|
|
|
|
$contact_id = $GLOBALS['egw']->accounts->id2name(substr($contact_id,8),'person_id');
|
|
|
|
}
|
|
|
|
if (!($contact = $this->read($contact_id)) || !$contact['jpegphoto'])
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->redirect($GLOBALS['egw']->common->image('addressbook','photo'));
|
|
|
|
}
|
|
|
|
if (!ob_get_contents())
|
|
|
|
{
|
|
|
|
header('Content-type: image/jpeg');
|
2006-06-13 06:30:16 +02:00
|
|
|
header('Content-length: '.(extension_loaded(mbstring) ? mb_strlen($contact['jpegphoto'],'ascii') : strlen($contact['jpegphoto'])));
|
2006-04-23 16:40:31 +02:00
|
|
|
echo $contact['jpegphoto'];
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-30 20:03:06 +02:00
|
|
|
/**
|
|
|
|
* returns link to call the given phonenumer
|
|
|
|
*
|
|
|
|
* @param string $number phone number
|
|
|
|
* @param string &$link returns the link
|
|
|
|
* @return boolean true if we have a link, false if not
|
|
|
|
*/
|
|
|
|
function call_link($number,&$link)
|
|
|
|
{
|
|
|
|
if (!$number || !$this->config['call_link']) return false;
|
|
|
|
|
2006-06-17 20:50:07 +02:00
|
|
|
$link = str_replace('%1',urlencode($number),$this->config['call_link']);
|
2006-04-30 20:03:06 +02:00
|
|
|
}
|
|
|
|
|
2005-11-04 00:47:52 +01:00
|
|
|
function js()
|
|
|
|
{
|
|
|
|
return '<script LANGUAGE="JavaScript">
|
|
|
|
|
2005-11-14 18:29:39 +01:00
|
|
|
function showphones(form)
|
|
|
|
{
|
|
|
|
if (form) {
|
|
|
|
copyvalues(form,"tel_home","tel_home2");
|
|
|
|
copyvalues(form,"tel_work","tel_work2");
|
|
|
|
copyvalues(form,"tel_cell","tel_cell2");
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
|
2005-11-14 18:29:39 +01:00
|
|
|
function hidephones(form)
|
|
|
|
{
|
|
|
|
if (form) {
|
|
|
|
copyvalues(form,"tel_home2","tel_home");
|
|
|
|
copyvalues(form,"tel_work2","tel_work");
|
|
|
|
copyvalues(form,"tel_cell2","tel_cell");
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function copyvalues(form,src,dst){
|
|
|
|
var srcelement = getElement(form,src); //ById("exec["+src+"]");
|
|
|
|
var dstelement = getElement(form,dst); //ById("exec["+dst+"]");
|
2005-11-14 18:29:39 +01:00
|
|
|
if (srcelement && dstelement) {
|
|
|
|
dstelement.value = srcelement.value;
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getElement(form,pattern){
|
|
|
|
for (i = 0; i < form.length; i++){
|
|
|
|
if(form.elements[i].name){
|
2006-04-24 14:21:48 +02:00
|
|
|
var found = form.elements[i].name.search("\\\\["+pattern+"\\\\]");
|
2005-11-04 00:47:52 +01:00
|
|
|
if (found != -1){
|
|
|
|
return form.elements[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-23 16:40:31 +02:00
|
|
|
function setFileasOptions(input)
|
|
|
|
{
|
|
|
|
var prefix = document.getElementById("exec[n_prefix]").value;
|
|
|
|
var given = document.getElementById("exec[n_given]").value;
|
|
|
|
var middle = document.getElementById("exec[n_middle]").value;
|
|
|
|
var family = document.getElementById("exec[n_family]").value;
|
|
|
|
var suffix = document.getElementById("exec[n_suffix]").value;
|
|
|
|
var org = document.getElementById("exec[org_name]").value;
|
|
|
|
|
|
|
|
xajax_doXMLHTTP("addressbook.uicontacts.ajax_setFileasOptions",prefix,given,middle,family,suffix,org);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setOptions(options_str)
|
|
|
|
{
|
|
|
|
var options = options_str.split("\\\\b");
|
|
|
|
var selbox = document.getElementById("exec[fileas_type]");
|
|
|
|
var i;
|
|
|
|
for (i=0; i < options.length; i++)
|
|
|
|
{
|
|
|
|
selbox.options[i].text = options[i];
|
|
|
|
}
|
|
|
|
}
|
2005-11-04 00:47:52 +01:00
|
|
|
</script>';
|
|
|
|
}
|
2006-07-08 02:36:23 +02:00
|
|
|
|
|
|
|
function migrate2ldap()
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['flags']['app_header'] = lang('Addressbook').' - '.lang('Migration to LDAP');
|
|
|
|
$GLOBALS['egw']->common->egw_header();
|
|
|
|
parse_navbar();
|
|
|
|
|
|
|
|
if (!$GLOBALS['egw_info']['user']['apps']['admin'])
|
|
|
|
{
|
|
|
|
echo '<h1>'.lang('Permission denied !!!')."</h1>\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
parent::migrate2ldap($_GET['type']);
|
|
|
|
echo '<p style="margin-top: 20px;"><b>'.lang('Migration finished')."</b></p>\n";
|
|
|
|
}
|
|
|
|
$GLOBALS['egw']->common->egw_footer();
|
|
|
|
}
|
2005-11-11 21:50:12 +01:00
|
|
|
}
|