egroupware/infolog/inc/hook_settings.inc.php
Ralf Becker 39ead5de4f 1) new preference to not display the describtion in the infolog list
2) fixed not working home display (if you clicked on something you got a black page)
2005-07-17 21:54:28 +00:00

55 lines
2.9 KiB
PHP

<?php
/**************************************************************************\
* eGroupWare - InfoLog Preferences *
* http://www.eGroupWare.org *
* Written by Ralf Becker <RalfBecker@outdoor-training.de> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$show_entries = array(
0 => lang('No'),
1 => lang('Yes'),
2 => lang('Yes').' - '.lang('show list of upcoming entries'),
);
create_select_box('Show open entries: Tasks/Calls/Notes on main screen','homeShowEvents',$show_entries,
'Should InfoLog display your open entries - not finished tasks, phonecalls or notes - on the main screen. Works only if you dont selected an application for the main screen (in your preferences).');
unset($show_entries);
create_input_box('Max number of entries to display on the main screen','mainscreen_maxshow',
'Only up to this number of entries are displayed on the main screen.','10',3);
$ui =& CreateObject('infolog.uiinfolog'); // need some labels from
foreach($ui->filters as $key => $label)
{
$filters[$key] = lang($label);
}
unset($ui);
create_select_box('Default Filter for InfoLog','defaultFilter',$filters,
'This is the filter InfoLog uses when you enter the application. Filters limit the entries to show in the actual view. There are filters to show only finished, still open or futures entries of yourself or all users.');
unset($filters);
create_check_box('List no Subs/Childs','listNoSubs',
'Should InfoLog show Subtasks, -calls or -notes in the normal view or not. You can always view the Subs via there parent.');
/*
create_check_box('Show full usernames','longNames',
'Should InfoLog use full names (surname and familyname) or just the loginnames.');
*/
$show_links = array(
'all' => lang('all links and attachments'),
'links' => lang('only the links'),
'attach' => lang('only the attachments'),
'none' => lang('no links or attachments'),
'no_describtion' => lang('no describtion, links or attachments'),
);
create_select_box('Show in the InfoLog list','show_links',$show_links,
'Should InfoLog show the links to other applications and/or the file-attachments in the InfoLog list (normal view when u enter InfoLog).');
unset($show_links);
create_check_box('Never hide search and filters','never_hide','If not set, the line with search and filters is hidden for less entries then "max matches per page" (as defined in your common preferences).');