Lokalisierung etwas repariert.
[kivitendo-erp.git] / bin / mozilla / menu.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 ######################################################################
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors: Christopher Browne
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #######################################################################
30 #
31 # the frame layout with refractured menu
32 #
33 # CHANGE LOG:
34 #   DS. 2002-03-25  Created
35 #  2004-12-14 - New Optik - Marco Welter <mawe@linux-studio.de>
36 #  2010-08-19 - Icons for sub entries and one click 
37 #               JS switchable HTML-menu - Sven Donath <lxo@dexo.de>
38 #######################################################################
39
40 use strict;
41
42 use SL::Menu;
43 use Data::Dumper;
44 use URI;
45
46 my $menufile = "menu.ini";
47 my $mainlevel;
48
49 # end of main
50
51 sub display {
52   $main::lxdebug->enter_sub();
53
54   my $form     = $main::form;
55
56   my $callback   = $form->unescape($form->{callback});
57   $callback      = URI->new($callback)->rel($callback) if $callback;
58   $callback      = "login.pl?action=company_logo"      if $callback =~ /^(\.\/)?$/;
59   my $framesize  = _calc_framesize();
60
61   $form->header;
62
63   print qq|
64 <frameset rows="28px,*" cols="*" framespacing="0" frameborder="0">
65   <frame  src="kopf.pl" name="kopf"  scrolling="NO">
66   <frameset cols="$framesize,*" framespacing="0" frameborder="0" border="0" id="menuframe" name="menuframe">
67     <frame src="$form->{script}?action=acc_menu" name="acc_menu"  scrolling="auto" noresize marginwidth="0">
68     <frame src="$callback" name="main_window" scrolling="auto">
69   </frameset>
70   <noframes>
71   You need a browser that can read frames to see this page.
72   </noframes>
73 </frameset>
74 </HTML>
75 |;
76
77   $main::lxdebug->leave_sub();
78 }
79
80 sub acc_menu {
81   $main::lxdebug->enter_sub();
82
83   my $form      = $main::form;
84   my $locale    = $main::locale;
85   my $framesize = _calc_framesize(); # how to get it into kopf.pl or vice versa?
86
87   $mainlevel = $form->{level};
88   $mainlevel =~ s/\Q$mainlevel\E--//g;
89   my $menu = Menu->new($::menufile);
90
91   $form->{title} = $locale->text('Lx-Office');
92
93   $form->header;
94
95   print qq|
96 <body class="menu">
97
98 |;
99   print qq|<div align="left">\n<table width="|
100     . $framesize
101     . qq|" border="0">\n|;
102
103   &section_menu($menu);
104
105   print qq|</table></div>|;
106   print qq|
107 </body>
108 </html>
109 |;
110
111   $main::lxdebug->leave_sub();
112 }
113
114 sub section_menu {
115   $main::lxdebug->enter_sub();
116   my ($menu, $level) = @_;
117
118   my $form     = $main::form;
119   my %myconfig = %main::myconfig;
120   my $locale   = $main::locale;
121
122   my $zeige;
123
124   # build tiered menus
125   my @menuorder = $menu->access_control(\%myconfig, $level);
126   while (@menuorder) {
127     my $item  = shift @menuorder;
128     my $label = $item;
129     my $ml    = $item;
130     $label =~ s/\Q$level\E--//g;
131     $ml    =~ s/--.*//;
132     if ($ml eq $mainlevel) { $zeige = 1; }
133     else { $zeige = 0; }
134     my $spacer = "&nbsp;" x (($item =~ s/--/--/g) * 2);
135     $label =~ s/.*--//g;
136     my $label_icon = $level . "--" . $label . ".png";
137     my $mlab       = $label;
138     $label      = $locale->text($label);
139
140     # multi line hack, sschoeling jul06
141     # if a label is too long, try to split it at whitespaces, then join it to chunks of less
142     # than 20 chars and store it in an array.
143     # use this array later instead of the &nbsp;-ed label
144     my @chunks = ();
145     my ($i,$l) = (-1, 20);
146     map {
147       if (($l += length $_) < 20) {
148         $chunks[$i] .= " $_";
149       } else {
150         $l = length $_;
151         $chunks[++$i] = $_;
152
153       }
154     } split / /, $label;
155     map { s/ /&nbsp;/ } @chunks;
156     # end multi line
157
158     $label =~ s/ /&nbsp;/g;
159     $menu->{$item}{target} = "main_window" unless $menu->{$item}{target};
160
161     if ($menu->{$item}{submenu}) {
162       $menu->{$item}{$item} = !$form->{$item};
163       if ($form->{level} && $item =~ /^\Q$form->{level}\E/) {
164
165         # expand menu
166         if ($zeige) {
167           print
168             qq|<tr><td style='vertical-align:bottom'><b>$spacer<img src="image/unterpunkt.png">$label</b></td></tr>\n|;
169         }
170
171         # remove same level items
172         map { shift @menuorder } grep /^$item/, @menuorder;
173         &section_menu($menu, $item);
174       } else {
175         if ($zeige) {
176           print qq|<tr><td>|
177             . $menu->menuitem(\%myconfig, \%$form, $item, $level)
178             . qq|$label&nbsp;...</a></td></tr>\n|;
179         }
180
181         # remove same level items
182         map { shift @menuorder } grep /^$item/, @menuorder;
183       }
184     } else {
185       if ($menu->{$item}{module}) {
186         if ($form->{$item} && $form->{level} eq $item) {
187           $menu->{$item}{$item} = !$form->{$item};
188           if ($zeige) {
189             print
190               qq|<tr><td valign=bottom>$spacer<img src="image/unterpunkt.png">|
191               . $menu->menuitem(\%myconfig, \%$form, $item, $level)
192               . qq|$label</a></td></tr>\n|;
193           }
194
195           # remove same level items
196           map { shift @menuorder } grep /^$item/, @menuorder;
197           &section_menu($menu, $item);
198         } else {
199           if ($zeige) {
200             if (scalar @chunks <= 1) {
201               print
202                 qq|<tr><td class="hover" height="16" >$spacer| 
203                 . $menu->menuitem(\%myconfig, \%$form, $item, $level) ;
204               
205             if (-f "image/icons/16x16/$label_icon")
206              { print 
207                 qq|<img src="image/icons/16x16/$label_icon" border="0" style="vertical-align:text-top" title="| 
208                 . $label 
209                 . qq|">&nbsp;&nbsp;| } 
210             else {
211                print qq|<img src="image/unterpunkt.png" border="0" style="vertical-align:text-top">|;   
212                 }
213                 
214                print
215                  qq|$label</a></td></tr>\n|;
216             } else {
217               my $tmpitem = $menu->menuitem(\%myconfig, \%$form, $item, $level);
218               print
219                 qq|<tr><td class="hover" height="16" >$spacer<img src="image/unterpunkt.png"  style="vertical-align:text-top">|
220                 . $tmpitem
221                 . qq|$chunks[0]</a></td></tr>\n|;
222               map {
223                 print
224                   qq|<tr style="vertical-align:top""><td class="hover">$spacer<img src="image/unterpunkt.png" style="visibility:hidden; width:24; height=2;">|
225                   . $tmpitem
226                   . qq|$chunks[$_]</a></td></tr>\n|;
227               } 1..$#chunks;
228             }
229           }
230         }
231       } else {
232         my $ml_ = $form->escape($ml);
233         print
234           qq|<tr><td class="bg" height="24" align="left" valign="middle"><a href="menu.pl?action=acc_menu&level=$ml_" class="nohover" title="$label"><img src="image/icons/24x24/$item.png" border="0" style="vertical-align:middle" title="$label">&nbsp;$label</a>&nbsp;&nbsp;&nbsp;&nbsp;</td></tr>\n|;
235         &section_menu($menu, $item);
236
237         print qq|\n|;
238       }
239     }
240   }
241   $main::lxdebug->leave_sub();
242 }
243
244 sub _calc_framesize {
245   my $is_lynx_browser   = $ENV{HTTP_USER_AGENT} =~ /links/i;
246   my $is_mobile_browser = $ENV{HTTP_USER_AGENT} =~ /mobile/i;
247   my $is_mobile_style   = $::form->{stylesheet} =~ /mobile/i;
248
249   return  $is_mobile_browser && $is_mobile_style ?  130
250         : $is_lynx_browser                       ?  240
251         :                                           180;
252 }
253
254 1;
255
256 __END__