2001-08-26 06:32:28 +02:00
< ? php
/************************************************************************** \
* phpGroupWare - Preferences *
* http :// www . phpgroupware . org *
* -------------------------------------------- *
* 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$ */
2001-09-01 22:01:05 +02:00
$templates = $GLOBALS [ 'phpgw' ] -> common -> list_templates ();
2001-08-26 06:32:28 +02:00
while ( list ( $var , $value ) = each ( $templates ))
{
$_templates [ $var ] = $templates [ $var ][ 'title' ];
}
2001-09-01 22:01:05 +02:00
$themes = $GLOBALS [ 'phpgw' ] -> common -> list_themes ();
2001-08-26 06:32:28 +02:00
while ( list (, $value ) = each ( $themes ))
{
$_themes [ $value ] = $value ;
}
2003-03-31 20:16:33 +02:00
create_input_box ( 'Max matches per page' , 'maxmatchs' ,
2003-04-02 19:41:30 +02:00
'Any listing in phpGW will show you this number or entries or lines per page.<br>To many slow down the page display, to less will cost you the overview.' , 15 , 3 );
2003-03-31 20:16:33 +02:00
create_select_box ( 'Interface/Template Selection' , 'template_set' , $_templates ,
'A template defines the layout of phpGroupWare and it contains icons vor each application.' );
create_select_box ( 'Theme (colors/fonts) Selection' , 'theme' , $_themes ,
'A theme defines the colors and fonts used by the template.' );
2001-08-26 06:32:28 +02:00
$navbar_format = array (
'icons' => lang ( 'Icons only' ),
'icons_and_text' => lang ( 'Icons and text' ),
'text' => lang ( 'Text only' )
);
2003-03-31 20:16:33 +02:00
create_select_box ( 'Show navigation bar as' , 'navbar_format' , $navbar_format ,
'You can show the applications as icons only, icons with app-name or both.' );
2001-08-26 06:32:28 +02:00
2003-03-31 20:16:33 +02:00
$format = $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'dateformat' ];
$format = ( $format ? $format : 'Y/m/d' ) . ', ' ;
if ( $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'timeformat' ] == '12' )
{
$format .= 'h:i a' ;
}
else
{
$format .= 'H:i' ;
}
2001-08-26 06:32:28 +02:00
for ( $i = - 23 ; $i < 24 ; $i ++ )
{
2003-03-31 20:16:33 +02:00
$t = time () + $i * 60 * 60 ;
$tz_offset [ $i ] = $i . ' ' . lang ( 'hours' ) . ': ' . date ( $format , $t );
2001-08-26 06:32:28 +02:00
}
2003-03-31 20:16:33 +02:00
create_select_box ( 'Time zone offset' , 'tz_offset' , $tz_offset ,
2003-04-02 19:41:30 +02:00
'How many hours are you in front or after the timezone of the server.<br>If you are in the same time zone as the server select 0 hours, else select your locale date and time.' , 0 );
2001-08-26 06:32:28 +02:00
$date_formats = array (
'm/d/Y' => 'm/d/Y' ,
'm-d-Y' => 'm-d-Y' ,
'm.d.Y' => 'm.d.Y' ,
'Y/d/m' => 'Y/d/m' ,
'Y-d-m' => 'Y-d-m' ,
'Y.d.m' => 'Y.d.m' ,
'Y/m/d' => 'Y/m/d' ,
'Y-m-d' => 'Y-m-d' ,
'Y.m.d' => 'Y.m.d' ,
'd/m/Y' => 'd/m/Y' ,
'd-m-Y' => 'd-m-Y' ,
'd.m.Y' => 'd.m.Y'
);
2003-03-31 20:16:33 +02:00
create_select_box ( 'Date format' , 'dateformat' , $date_formats ,
'How should phpGroupWare display dates for you.' );
2001-08-26 06:32:28 +02:00
$time_formats = array (
2003-03-18 12:28:50 +01:00
'12' => lang ( '12 hour' ),
'24' => lang ( '24 hour' )
2001-08-26 06:32:28 +02:00
);
2003-03-31 20:16:33 +02:00
create_select_box ( 'Time format' , 'timeformat' , $time_formats ,
'Do you prefer a 24 hour time format, or a 12 hour one with am/pm attached.' );
2001-08-26 06:32:28 +02:00
$sbox = createobject ( 'phpgwapi.sbox' );
2003-03-31 20:16:33 +02:00
create_select_box ( 'Country' , 'country' , $sbox -> country_array ,
'In which country are you. This is used to set certain defaults for you.' );
2003-04-02 19:41:30 +02:00
$langs = $GLOBALS [ 'phpgw' ] -> translation -> get_installed_langs ();
2003-03-18 18:05:42 +01:00
foreach ( $langs as $key => $name ) // if we have a translation use it
{
$trans = lang ( $name );
if ( $trans != $name . '*' )
{
$langs [ $key ] = $trans ;
}
2003-04-02 19:41:30 +02:00
}
2003-03-31 20:16:33 +02:00
create_select_box ( 'Language' , 'lang' , $langs ,
2003-04-02 19:41:30 +02:00
'Select the language of texts and messages within phpGroupWare.<br>Some languages may not contain all messages, in that case you will see an english message.' );
2003-03-31 20:16:33 +02:00
2001-08-26 06:32:28 +02:00
// preference.php handles this function
if ( is_admin ())
{
2003-03-31 20:16:33 +02:00
create_check_box ( 'Show current users on navigation bar' , 'show_currentusers' ,
'Should the number of active sessions be displayed for you all the time.' );
2001-08-26 06:32:28 +02:00
}
2001-09-01 22:01:05 +02:00
reset ( $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'apps' ]);
2003-03-18 12:28:50 +01:00
while ( list ( $app ) = each ( $GLOBALS [ 'phpgw_info' ][ 'user' ][ 'apps' ]))
2001-08-26 06:32:28 +02:00
{
2003-03-18 12:28:50 +01:00
if ( $GLOBALS [ 'phpgw_info' ][ 'apps' ][ $app ][ 'status' ] != 2 && $app )
2001-08-26 06:32:28 +02:00
{
2003-03-18 12:28:50 +01:00
$user_apps [ $app ] = $GLOBALS [ 'phpgw_info' ][ 'apps' ][ $app ][ 'title' ] ? $GLOBALS [ 'phpgw_info' ][ 'apps' ][ $app ][ 'title' ] : lang ( $app );
2001-08-26 06:32:28 +02:00
}
}
2003-03-31 20:16:33 +02:00
create_select_box ( 'Default application' , 'default_app' , $user_apps ,
2003-04-02 19:41:30 +02:00
" This is the application which will be started when you enter phpGroupWare or click on the homepage icon.<br>You can also have more than one applications showing up on the homepage, if you don't choose a specific application here (has to be configured in the preferences of each applicaton). " );
2001-08-26 06:32:28 +02:00
2003-03-31 20:16:33 +02:00
create_input_box ( 'Currency' , 'currency' ,
'Which currency symbole or name should be used in phpGroupWare.' );
create_check_box ( 'Show helpmessages by default' , 'show_help' ,
'Should the help messages always be shown when you enter the preferences or only on request.' );