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")
);
|