mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
fix: add contacts from mail
This commit is contained in:
parent
ac8eb8bf72
commit
4ca328c05d
@ -327,4 +327,17 @@ class socontacts
|
|||||||
}
|
}
|
||||||
return $need_full_no_count ? count($result) : $result;
|
return $need_full_no_count ? count($result) : $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all contact fields from database
|
||||||
|
*/
|
||||||
|
function get_contact_conlumns()
|
||||||
|
{
|
||||||
|
$fields = $this->somain->db_data_cols;
|
||||||
|
foreach ((array)$this->customfields as $cfield => $coptions)
|
||||||
|
{
|
||||||
|
$fields['#'.$cfield] = '#'.$cfield;
|
||||||
|
}
|
||||||
|
return $fields;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -678,20 +678,14 @@
|
|||||||
$fields['n_given'] = $names[0];
|
$fields['n_given'] = $names[0];
|
||||||
$fields['n_family'] = $names[1];
|
$fields['n_family'] = $names[1];
|
||||||
}
|
}
|
||||||
$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'];
|
|
||||||
$fields['email'] = $add_email;
|
|
||||||
$fields['access'] = 'private';
|
|
||||||
$fields['tid'] = 'n';
|
|
||||||
$referer = urlencode($referer);
|
|
||||||
|
|
||||||
$fields['owner'] = $GLOBALS['egw_info']['user']['account_id'];
|
$GLOBALS['egw']->redirect_link('/index.php', array(
|
||||||
// _debug_array($fields);exit;
|
'menuaction' => 'addressbook.uicontacts.edit',
|
||||||
$this->bo->add_entry($fields);
|
'presets[n_given]' => $fields['n_given'] ? $fields['n_given'] : ' ',
|
||||||
$ab_id = $this->bo->get_lastid();
|
'presets[n_middle]' => $fields['n_middle'] ? $fields['n_middle'] : '',
|
||||||
|
'presets[n_family]' => $fields['n_family'] ? $fields['n_family'] : ' ',
|
||||||
$GLOBALS['egw']->redirect_link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id . '&referer=' . $referer);
|
'presets[email]' => $add_email,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function copy()
|
function copy()
|
||||||
|
@ -110,12 +110,20 @@ class uicontacts extends bocontacts
|
|||||||
{
|
{
|
||||||
$content = array();
|
$content = array();
|
||||||
$contact_id = $_GET['contact_id'] ? $_GET['contact_id'] : 0;
|
$contact_id = $_GET['contact_id'] ? $_GET['contact_id'] : 0;
|
||||||
$view = $_GET['view'];// == 1 ? true : false;
|
$view = $_GET['view'];
|
||||||
|
|
||||||
if ($contact_id)
|
if ($contact_id)
|
||||||
{
|
{
|
||||||
$content = $this->read($contact_id);
|
$content = $this->read($contact_id);
|
||||||
}
|
}
|
||||||
|
else // look if we have presets for a new contact
|
||||||
|
{
|
||||||
|
foreach($this->get_contact_conlumns() as $field => $data)
|
||||||
|
{
|
||||||
|
if ($_GET['presets'][$field]) $content[$field] = $_GET['presets'][$field];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if($content && $_GET['makecp']) // copy the contact
|
if($content && $_GET['makecp']) // copy the contact
|
||||||
{
|
{
|
||||||
$content['link_to']['to_id'] = 0;
|
$content['link_to']['to_id'] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user