Files
server/usr/share/psa-horde/nag/config/prefs.php
2026-01-07 20:52:11 +01:00

334 lines
12 KiB
PHP

<?php
/**
* See horde/config/prefs.php for documentation on the structure of this file.
*
* IMPORTANT: DO NOT EDIT THIS FILE! DO NOT COPY prefs.php TO prefs.local.php!
* Local overrides ONLY MUST be placed in prefs.local.php or prefs.d/.
* If the 'vhosts' setting has been enabled in Horde's configuration, you can
* use prefs-servername.php.
*/
$prefGroups['display'] = array(
'column' => _("General Preferences"),
'label' => _("Display Preferences"),
'desc' => _("Change your task sorting and display preferences."),
'members' => array('tasklist_columns', 'sortby', 'altsortby', 'sortdir'),
);
$prefGroups['deletion'] = array(
'column' => _("General Preferences"),
'label' => _("Deleting Tasks"),
'desc' => _("Delete behaviour"),
'members' => array('delete_opt', 'purge_completed_interval', 'purge_completed_keep'),
);
$prefGroups['tasks'] = array(
'column' => _("General Preferences"),
'label' => _("Task Defaults"),
'desc' => _("Defaults for new tasks"),
'members' => array('default_due', 'default_due_days', 'default_due_time'),
);
$prefGroups['share'] = array(
'column' => _("Task List and Share Preferences"),
'label' => _("Default Task List"),
'desc' => _("Choose your default task list."),
'members' => array('default_tasklist'),
);
$prefGroups['sync'] = array(
'column' => _("Task List and Share Preferences"),
'label' => _("Synchronization Preferences"),
'desc' => _("Choose the task lists to use for synchronization with external devices."),
'members' => array('sync_lists', 'activesync_no_multiplex'),
);
$prefGroups['notification'] = array(
'column' => _("Task List and Share Preferences"),
'label' => _("Notifications"),
'desc' => _("Choose if you want to be notified of task changes and task alarms."),
'members' => array('task_notification', 'task_notification_exclude_self', 'task_alarms_select'),
);
$prefGroups['external'] = array(
'column' => _("Task List and Share Preferences"),
'label' => _("External Data"),
'desc' => _("Show data from other applications or sources."),
'members' => array('show_external'),
);
// columns in the list view
$_prefs['tasklist_columns'] = array(
'value' => 'a:2:{i:0;s:8:"priority";i:1;s:3:"due";}',
'type' => 'multienum',
'enum' => array(
'tasklist' => _("Task List"),
'priority' => _("Priority"),
'assignee' => _("Assignee"),
'due' => _("Due Date"),
'start' => _("Start Date"),
'estimate' => _("Estimated Time")
),
'desc' => _("Select the columns that should be shown in the list view:")
);
// user preferred sorting column
$_prefs['sortby'] = array(
'value' => Nag::SORT_PRIORITY,
'type' => 'enum',
'enum' => array(
Nag::SORT_PRIORITY => _("Priority"),
Nag::SORT_NAME => _("Task Name"),
Nag::SORT_DUE => _("Due Date"),
Nag::SORT_START => _("Start Date"),
Nag::SORT_COMPLETION => _("Completed?"),
Nag::SORT_ESTIMATE => _("Estimated Time"),
Nag::SORT_ASSIGNEE => _("Assignee"),
Nag::SORT_OWNER => _("Task List")
),
'desc' => _("Sort tasks by:"),
);
// alternate sort column
$_prefs['altsortby'] = array(
'value' => Nag::SORT_DUE,
'type' => 'enum',
'enum' => array(
Nag::SORT_PRIORITY => _("Priority"),
Nag::SORT_NAME => _("Task Name"),
Nag::SORT_DUE => _("Due Date"),
Nag::SORT_START => _("Start Date"),
Nag::SORT_COMPLETION => _("Completed?"),
Nag::SORT_ESTIMATE => _("Estimated Time"),
Nag::SORT_ASSIGNEE => _("Assignee"),
Nag::SORT_OWNER => _("Task List")
),
'desc' => _("Then:"),
);
// user preferred sorting direction
$_prefs['sortdir'] = array(
'value' => Nag::SORT_ASCEND,
'type' => 'enum',
'enum' => array(
Nag::SORT_ASCEND => _("Ascending"),
Nag::SORT_DESCEND => _("Descending")
),
'desc' => _("Sort direction:"),
);
// preference for delete confirmation dialog.
$_prefs['delete_opt'] = array(
'value' => 1,
'type' => 'checkbox',
'desc' => _("Do you want to confirm deleting entries?"),
);
// how often to purge completed tasks?
$_prefs['purge_completed_interval'] = array(
'value' => 0,
'type' => 'enum',
'enum' => array_merge(array(0 => _("Never")), Horde_LoginTasks::getLabels()),
'desc' => _("Purge completed tasks how often:")
);
$_prefs['purge_completed_keep'] = array(
'value' => 30,
'type' => 'number',
'desc' => _("Purge completed tasks older than this amount of days.")
);
// default to tasks having a due date?
$_prefs['default_due'] = array(
'value' => 0,
'type' => 'checkbox',
'desc' => _("When creating a new task, should it default to having a due date?"),
);
// default number of days out for due dates
$_prefs['default_due_days'] = array(
'value' => 1,
'type' => 'number',
'zero' => true,
'desc' => _("When creating a new task, how many days in the future should the default due date be (0 means today)?"),
);
// default due time
$_prefs['default_due_time'] = array(
'value' => 'now',
'type' => 'enum',
'enum' => array(),
'desc' => _("What do you want to be the default due time for tasks?"),
'on_init' => function($ui) {
$enum = array('now' => _("The current hour"));
$twentyfour = $GLOBALS['prefs']->getValue('twentyFour');
for ($i = 0; $i < 24; ++$i) {
$value = sprintf('%02d:00', $i);
$enum[$value] = $twentyfour
? $value
: sprintf('%02d:00 ' . ($i >= 12 ? _("pm") : _("am")), ($i % 12 ? $i % 12 : 12));
}
$ui->prefs['default_due_time']['enum'] = $enum;
}
);
// new task notifications
$_prefs['task_notification'] = array(
'value' => '',
'type' => 'enum',
'enum' => array(
'' => _("No"),
'owner' => _("On my task lists only"),
'show' => _("On all shown task lists"),
'read' => _("On all task lists I have read access to")
),
'desc' => _("Choose if you want to be notified of new, edited, and deleted tasks by email:"),
);
$_prefs['task_notification_exclude_self'] = array(
'value' => 0,
'locked' => false,
'type' => 'checkbox',
'desc' => _("Don't send me a notification if I've added, changed or deleted the task?")
);
// alarm methods
$_prefs['task_alarms_select'] = array(
'type' => 'special',
'handler' => 'Nag_Prefs_Special_TaskAlarms',
'suppress' => function() {
return empty($GLOBALS['conf']['alarms']['driver']);
}
);
$_prefs['task_alarms'] = array(
'value' => 'a:1:{s:6:"notify";a:0:{}}'
);
// show data from other applications that can be listed as tasks?
$_prefs['show_external'] = array(
'value' => 'a:0:{}',
'type' => 'multienum',
'enum' => array('whups' => $GLOBALS['registry']->get('name', 'whups')),
'desc' => _("Show data from any of these other applications in your task list?"),
'suppress' => function() {
return !$GLOBALS['registry']->hasMethod('getListTypes', 'whups');
}
);
// show complete/incomplete tasks?
$_prefs['show_completed'] = array(
'value' => 1,
'type' => 'enum',
'enum' => array(
Nag::VIEW_ALL => _("All tasks"),
Nag::VIEW_INCOMPLETE => _("Incomplete tasks"),
Nag::VIEW_COMPLETE => _("Complete tasks"),
Nag::VIEW_FUTURE => _("Future tasks")
),
'desc' => _("Show complete, incomplete, or all tasks in the task list?"),
);
// default tasklists
// Set locked to true if you don't want users to have multiple task lists.
$_prefs['default_tasklist'] = array(
'value' => '',
'type' => 'enum',
'enum' => array(),
'desc' => _("Your default task list:"),
'on_init' => function($ui) {
$enum = array();
foreach (Nag::listTasklists(false, Horde_Perms::EDIT, false) as $key => $val) {
$enum[$key] = Nag::getLabel($val);
}
$ui->prefs['default_tasklist']['enum'] = $enum;
},
'on_change' => function() {
$GLOBALS['injector']->getInstance('Nag_Factory_Tasklists')
->create()
->setDefaultShare($GLOBALS['prefs']->getValue('default_tasklist'));
$sync = @unserialize($GLOBALS['prefs']->getValue('sync_lists'));
$haveDefault = false;
$default = Nag::getDefaultTasklist(Horde_Perms::EDIT);
foreach ($sync as $cid) {
if ($cid == $default) {
$haveDefault = true;
break;
}
}
if (!$haveDefault) {
$sync[] = $default;
$GLOBALS['prefs']->setValue('sync_lists', serialize($sync));
}
}
);
// store the task lists to diplay
$_prefs['display_tasklists'] = array(
'value' => 'a:0:{}'
);
// Tasklists use for synchronization
$_prefs['sync_lists'] = array(
'value' => 'a:0:{}',
'type' => 'multienum',
'enum' => array(),
'desc' => _("Select the task lists that, in addition to the default, should be used for synchronization with external devices:"),
'on_init' => function($ui) {
$enum = array();
$sync = @unserialize($GLOBALS['prefs']->getValue('sync_lists'));
if (empty($sync)) {
$default_tasklist = Nag::getDefaultTasklist(Horde_Perms::DELETE);
$sync_list = !empty($default_tasklist)
? array($default_tasklist)
: array();
$GLOBALS['prefs']->setValue('sync_lists', serialize($sync_list));
}
foreach (Nag::listTasklists(false, Horde_Perms::DELETE, false) as $key => $list) {
if ($list->getName() != Nag::getDefaultTasklist(Horde_Perms::DELETE)) {
$enum[$key] = Nag::getLabel($list);
}
}
$ui->prefs['sync_lists']['enum'] = $enum;
},
'on_change' => function() {
$sync = @unserialize($GLOBALS['prefs']->getValue('sync_lists'));
$haveDefault = false;
$default = Nag::getDefaultTasklist(Horde_Perms::DELETE);
foreach ($sync as $cid) {
if ($cid == $default) {
$haveDefault = true;
break;
}
}
if (!$haveDefault && !empty($default)) {
$sync[] = $default;
$GLOBALS['prefs']->setValue('sync_lists', serialize($sync));
}
if ($GLOBALS['conf']['activesync']['enabled'] && !$GLOBALS['prefs']->getValue('activesync_no_multiplex')) {
try {
$sm = $GLOBALS['injector']->getInstance('Horde_ActiveSyncState');
$sm->setLogger($GLOBALS['injector']->getInstance('Horde_Log_Logger'));
$devices = $sm->listDevices($GLOBALS['registry']->getAuth());
foreach ($devices as $device) {
$sm->removeState(array(
'devId' => $device['device_id'],
'id' => Horde_Core_ActiveSync_Driver::TASKS_FOLDER_UID,
'user' => $GLOBALS['registry']->getAuth()
));
}
$GLOBALS['notification']->push(_("All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server."));
} catch (Horde_ActiveSync_Exception $e) {
$GLOBALS['notification']->push(_("There was an error communicating with the ActiveSync server: %s"), $e->getMessage(), 'horde.error');
}
}
}
);
// @todo We default to using multiplex since that is the current behavior
// For Nag 5 we should default to separate.
$_prefs['activesync_no_multiplex'] = array(
'type' => 'checkbox',
'desc' => _("Support separate task lists?"),
'value' => 0
);