egroupware_official/phpgwapi/templates/idots/hook_settings.inc.php
Pim Snel 07dd063def i-dots changes:
-  lay-out fixes in header
-  background in loginscreen to make it a little less boring
-  IE fix for wrong z-index with Selectboxes: temporarely hide selectboxes when showing menulayers
-  extra option to disable IE png fix
-  extra option to choose Click or Mouse Over to show menu's
-  extra option to auto hide sideboxmenu's (a lot of people will like this)
-  extra option to use sliders for showing menu, default enabled (see testresults below):

Mozilla-firebird Windows -> OK
Mozilla-firebird Linux -> OK
Internet Explorer 6.0 Windows 2000 - OK
Konqueror 3.1 Linux -> gets very slow, lay-out bugs (don't use this option with konqueror)
Opera 6 Linux -> showing works, hiding not, lay-out bugs (test again please)
Opera 7 Linux -> very annoing bug with temporarely hiding selectboxes (must not be hard to fix, pathes are welcome)

please also test this with Safari, Mac IE 5,  Win IE 5.0 and 5.5 and report bugs at sf
2003-12-15 00:05:28 +00:00

38 lines
1.9 KiB
PHP

<?php
/**************************************************************************\
* eGroupWare - Preferences *
* http://www.eGroupWare.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$ */
create_section('Preferences for the idots template set');
create_input_box('Max number of icons in navbar','max_icons',
'How many icons should be shown in the navbar (top of the page). Additional icons go into a kind of pulldown menu, callable by the icon on the far right side of the navbar.','10',3);
create_check_box('Autohide Sidebox menu\'s','auto_hide_sidebox',
'Automacally hide the Sidebox menu\'s?');
$click_or_onmouseover = array(
'click' => lang('Click'),
'onmouseover' => lang('On Mouse Over'),
);
create_select_box('Click or Mouse Over to show menu\'s','click_or_onmouseover',$click_or_onmouseover,
'Click or Mouse Over to show menu\'s?');
create_check_box('Disable slider effects','disable_slider_effects',
'Disable the animated slider effects when showing or hiding menu\'s in the page? Opera and Konqueror users will probably must want this.');
create_check_box('Disable Internet Explorer png-image-bugfix','disable_pngfix',
'Diable the execution a bugfixscript for Internet Explorer 5.5 and higher to show transparency in PNG-images?');
create_check_box('Show page generation time','show_generation_time',
'Show page generation time on the bottom of the page?');