File: prefs.php.dist

package info (click to toggle)
chora2 2.0.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,208 kB
  • ctags: 302
  • sloc: php: 1,298; xml: 406; makefile: 66
file content (38 lines) | stat: -rw-r--r-- 939 bytes parent folder | download | duplicates (2)
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
<?php
/**
 * $Horde: chora/config/prefs.php.dist,v 1.3 2003/11/18 20:28:11 slusarz Exp $
 *
 * See horde/config/prefs.php for documentation on the structure of this file.
 */

$prefGroups['logintasks'] = array(
    'column' => _("Other Options"),
    'label' => _("Login Tasks"),
    'desc' => _("Customize tasks to run upon logging in to Chora."),
    'members' => array('remember_last_file')
);

// last browse file/directory
$_prefs['last_file'] = array(
    'value' => 0,
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);

// last sourceroot used
$_prefs['last_sourceroot'] = array(
    'value' => 0,
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);

// show the last login time of user
$_prefs['remember_last_file'] = array(
    'value' => 1,
    'locked' => false,
    'shared' => false,
    'type' => 'checkbox',
    'desc' => _("Use last viewed file or directory at login time")
);