Revert "MenĂ¼ refactored damit keine Icons verloren gehen."
[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 single click behavior, unlike XUL-Menu
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();
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-2)
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   my $is_not_links_browser = $ENV{HTTP_USER_AGENT} =~ /links/i ? 0 : 1;
122
123   my $zeige;
124
125   # build tiered menus
126   my @menuorder = $menu->access_control(\%myconfig, $level);
127   while (@menuorder) {
128     my $item  = shift @menuorder;
129     my $label = $item;
130     my $ml    = $item;
131     $label =~ s/\Q$level\E--//g;
132     $ml    =~ s/--.*//;
133     if ($ml eq $mainlevel) { $zeige = 1; }
134     else { $zeige = 0; }
135     my $spacer = "&nbsp;" x (($item =~ s/--/--/g) * 2);
136     $label =~ s/.*--//g;
137     my $label_icon = $level . "--" . $label . ".png";
138     my $mlab       = $label;
139     $label      = $locale->text($label);
140
141     # multi line hack, sschoeling jul06
142     # if a label is too long, try to split it at whitespaces, then join it to chunks of less
143     # than 20 chars and store it in an array.
144     # use this array later instead of the &nbsp;-ed label
145     my @chunks = ();
146     my ($i,$l) = (-1, 20);
147     map {
148       if (($l += length $_) < 20) {
149         $chunks[$i] .= " $_";
150       } else {
151         $l = length $_;
152         $chunks[++$i] = $_;
153
154       }
155     } split / /, $label;
156     map { s/ /&nbsp;/ } @chunks;
157     # end multi line
158
159     $label =~ s/ /&nbsp;/g;
160     $menu->{$item}{target} = "main_window" unless $menu->{$item}{target};
161
162     if ($menu->{$item}{submenu}) {
163       $menu->{$item}{$item} = !$form->{$item};
164       if ($form->{level} && $item =~ /^\Q$form->{level}\E/) {
165
166         # expand menu
167         if ($zeige) {
168           print
169             qq|<tr><td style='vertical-align:bottom'><b>$spacer<img src="image/unterpunkt.png">$label</b></td></tr>\n|;
170         }
171
172         # remove same level items
173         map { shift @menuorder } grep /^$item/, @menuorder;
174         &section_menu($menu, $item);
175       } else {
176         if ($zeige) {
177           print qq|<tr><td>|
178             . $menu->menuitem(\%myconfig, \%$form, $item, $level)
179             . qq|$label&nbsp;...</a></td></tr>\n|;
180         }
181
182         # remove same level items
183         map { shift @menuorder } grep /^$item/, @menuorder;
184       }
185     } else {
186       if ($menu->{$item}{module}) {
187         if ($form->{$item} && $form->{level} eq $item) {
188           $menu->{$item}{$item} = !$form->{$item};
189           if ($zeige) {
190             print
191               qq|<tr><td valign=bottom>$spacer<img src="image/unterpunkt.png">|
192               . $menu->menuitem(\%myconfig, \%$form, $item, $level)
193               . qq|$label</a></td></tr>\n|;
194           }
195
196           # remove same level items
197           map { shift @menuorder } grep /^$item/, @menuorder;
198           &section_menu($menu, $item);
199         } else {
200           if ($zeige) {
201             if (scalar @chunks <= 1) {
202               print
203                 qq|<tr><td class="hover" height="16" >$spacer|
204                 . $menu->menuitem(\%myconfig, \%$form, $item, $level) ;
205
206             if (-f "image/icons/16x16/$label_icon" && ($is_not_links_browser))
207              { print
208                 qq|<img src="image/icons/16x16/$label_icon" border="0" style="vertical-align:text-top" title="|
209                 . $label
210                 . qq|">&nbsp;&nbsp;| }
211             else {
212                    if ($is_not_links_browser) {
213                     print qq|<img src="image/unterpunkt.png" border="0" style="vertical-align:text-top">|;
214                    }
215                 }
216
217                print
218                  qq|$label</a></td></tr>\n|;
219             } else {
220               my $tmpitem = $menu->menuitem(\%myconfig, \%$form, $item, $level);
221               print
222                 qq|<tr><td class="hover" height="16" >$spacer<img src="image/unterpunkt.png"  style="vertical-align:text-top">|
223                 . $tmpitem
224                 . qq|$chunks[0]</a></td></tr>\n|;
225               map {
226                 print
227                   qq|<tr style="vertical-align:top""><td class="hover">$spacer<img src="image/unterpunkt.png" style="visibility:hidden; width:24; height=2;">|
228                   . $tmpitem
229                   . qq|$chunks[$_]</a></td></tr>\n|;
230               } 1..$#chunks;
231             }
232           }
233         }
234       } else {
235         my $ml_ = $form->escape($ml);
236         print
237           qq|<tr><td class="bg" height="24" align="left" valign="middle">
238           <a href="menu.pl?action=acc_menu&level=$ml_" class="nohover" title="$label">|;
239               if ($is_not_links_browser) {
240                   print qq|<img src="image/icons/24x24/$item.png" border="0" style="vertical-align:middle" title="$label">|;
241               }
242           print qq|&nbsp;$label</a>&nbsp;&nbsp;&nbsp;&nbsp;</td></tr>\n|;
243         &section_menu($menu, $item);
244
245         print qq|\n|;
246       }
247     }
248   }
249   $main::lxdebug->leave_sub();
250 }
251
252 sub _calc_framesize {
253   my $is_lynx_browser   = $ENV{HTTP_USER_AGENT} =~ /links/i;
254   my $is_mobile_browser = $ENV{HTTP_USER_AGENT} =~ /mobile/i;
255   my $is_mobile_style   = $::form->{stylesheet} =~ /mobile/i;
256
257   return  $is_mobile_browser && $is_mobile_style ?  130
258         : $is_lynx_browser                       ?  240
259         :                                           200;
260 }
261
262 1;
263
264 __END__