mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Fix default value for mail's contact label preference
This commit is contained in:
parent
4cd2d665d7
commit
4fe8fd5154
@ -176,6 +176,24 @@ class mail_hooks
|
|||||||
'always_display' => lang('always show html emails'),
|
'always_display' => lang('always show html emails'),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$contactLabelOptions = array (
|
||||||
|
'n_prefix' => array (
|
||||||
|
'id' => 'n_prefix',
|
||||||
|
'label' => lang('Prefix'),
|
||||||
|
),
|
||||||
|
'n_given' => array (
|
||||||
|
'id' => 'n_given',
|
||||||
|
'label' => lang('First name')
|
||||||
|
),
|
||||||
|
'n_family' => array(
|
||||||
|
'id' => 'n_family',
|
||||||
|
'label' => lang('Last name')
|
||||||
|
),
|
||||||
|
'org_name' => array(
|
||||||
|
'id' => 'org_name',
|
||||||
|
'label' => lang('Organisation')
|
||||||
|
)
|
||||||
|
);
|
||||||
// otherwise we get warnings during setup
|
// otherwise we get warnings during setup
|
||||||
if (!is_array($folderList)) $folderList = array();
|
if (!is_array($folderList)) $folderList = array();
|
||||||
|
|
||||||
@ -457,29 +475,12 @@ class mail_hooks
|
|||||||
'label' => 'Contact label',
|
'label' => 'Contact label',
|
||||||
'help' => 'Defines what to show as contact label for added contact into To/Cc/Bcc when composing an email. Default is firstname lastname and empty means include eveything available.',
|
'help' => 'Defines what to show as contact label for added contact into To/Cc/Bcc when composing an email. Default is firstname lastname and empty means include eveything available.',
|
||||||
'name' => 'contactLabel',
|
'name' => 'contactLabel',
|
||||||
'values' => '',
|
'values' => $contactLabelOptions,
|
||||||
'attributes' => array(
|
'attributes' => array(
|
||||||
'allowFreeEntries' => false,
|
'allowFreeEntries' => false,
|
||||||
'editModeEnabled' => false,
|
'editModeEnabled' => false,
|
||||||
'autocomplete_url' => ' ',
|
'autocomplete_url' => ' ',
|
||||||
'select_options' => array (
|
'select_options' => $contactLabelOptions
|
||||||
'n_prefix' => array (
|
|
||||||
'id' => 'n_prefix',
|
|
||||||
'label' => lang('Prefix'),
|
|
||||||
),
|
|
||||||
'n_given' => array (
|
|
||||||
'id' => 'n_given',
|
|
||||||
'label' => lang('First name')
|
|
||||||
),
|
|
||||||
'n_family' => array(
|
|
||||||
'id' => 'n_family',
|
|
||||||
'label' => lang('Last name')
|
|
||||||
),
|
|
||||||
'org_name' => array(
|
|
||||||
'id' => 'org_name',
|
|
||||||
'label' => lang('Organisation')
|
|
||||||
)
|
|
||||||
)
|
|
||||||
),
|
),
|
||||||
'default' => ['n_given','n_family']
|
'default' => ['n_given','n_family']
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user