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

Revision 2, 2.3 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 celepar template set');
13
14        $start_and_logout_icons = array(
15                'yes'       => lang('yes'),
16                'no' => lang('no')
17        );
18
19        create_select_box(
20                'Show home and logout button in main application bar?',
21                'start_and_logout_icons',
22                $start_and_logout_icons,
23                'When you say yes the home and logout buttons are presented as applications in the main top applcation bar.'
24        );
25
26        create_input_box(
27                'Max number of icons in navbar',
28                'max_icons',
29                '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.','',3
30        );
31
32        create_check_box(
33                'Autohide Sidebox menu\'s',
34                'auto_hide_sidebox',
35                'Automatically hide the Sidebox menu\'s?'
36        );
37
38        $click_or_onmouseover = array(
39                'click'       => lang('Click'),
40                'onmouseover' => lang('On Mouse Over')
41        );
42
43        create_select_box(
44                'Click or Mouse Over to show menus',
45                'click_or_onmouseover',
46                $click_or_onmouseover,
47                'Click or Mouse Over to show menus?'
48        );
49
50        create_check_box(
51                'Disable slider effects',
52                'disable_slider_effects',
53                'Disable the animated slider effects when showing or hiding menus in the page? Opera and Konqueror users will probably must want this.'
54        );
55
56        create_check_box(
57                'Disable Internet Explorer png-image-bugfix',
58                'disable_pngfix',
59                'Disable the execution a bugfixscript for Internet Explorer 5.5 and higher to show transparency in PNG-images?'
60        );
61
62        create_check_box(
63                'Show page generation time',
64                'show_generation_time',
65                'Show page generation time on the bottom of the page?'
66        );
Note: See TracBrowser for help on using the repository browser.