/etc/horde/trean/prefs.php is in php-horde-trean 1.1.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <?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' => _("Other Preferences"),
'label' => _("Display Preferences"),
'desc' => _("Set how to display bookmark listings and how to open links."),
'members' => array('sortby', 'sortdir', 'show_in_new_window')
);
// bookmark sort order
$_prefs['sortby'] = array(
'value' => 'dt',
'locked' => false,
'type' => 'enum',
'enum' => array(
'title' => _("Title"),
'clicks' => _("Most Clicked"),
'dt' => _("Bookmarked on"),
),
'desc' => _("Sort bookmarks by:"),
);
// user preferred sorting direction
$_prefs['sortdir'] = array(
'value' => 1,
'locked' => false,
'type' => 'enum',
'enum' => array(0 => _("Ascending (A to Z or oldest to newest)"),
1 => _("Descending (9 to 1 or newest to oldest)")),
'desc' => _("Sort direction:"),
);
// Open links in new windows?
$_prefs['show_in_new_window'] = array(
'value' => 1,
'locked' => false,
'type' => 'checkbox',
'desc' => _("Open links in a new window?")
);
|