source: trunk/phpgwapi/templates/jerryr/hook_settings.inc.php @ 2

Revision 2, 1.9 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Preferences                                                 *
4        * http://www.eGroupWare.org                                                *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11
12        create_section('Preferences for the idots template set');
13
14        create_input_box(
15                'Max number of icons in navbar',
16                'max_icons',
17                '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
18        );
19
20        create_check_box(
21                'Autohide Sidebox menu\'s',
22                'auto_hide_sidebox',
23                'Automatically hide the Sidebox menu\'s?'
24        );
25
26        $click_or_onmouseover = array(
27                'click'       => lang('Click'),
28                'onmouseover' => lang('On Mouse Over')
29        );
30
31        create_select_box(
32                'Click or Mouse Over to show menus',
33                'click_or_onmouseover',
34                $click_or_onmouseover,
35                'Click or Mouse Over to show menus?'
36        );
37
38        create_check_box(
39                'Disable slider effects',
40                'disable_slider_effects',
41                'Disable the animated slider effects when showing or hiding menus in the page? Opera and Konqueror users will probably must want this.'
42        );
43
44        create_check_box(
45                'Disable Internet Explorer png-image-bugfix',
46                'disable_pngfix',
47                'Disable the execution a bugfixscript for Internet Explorer 5.5 and higher to show transparency in PNG-images?'
48        );
49
50        create_check_box(
51                'Show page generation time',
52                'show_generation_time',
53                'Show page generation time on the bottom of the page?'
54        );
Note: See TracBrowser for help on using the repository browser.