1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 ######################################################################
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
15 # Contributors: Christopher Browne
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.
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 #######################################################################
31 # thre frame layout with refractured menu
33 #######################################################################
45 my $form = $main::form;
47 $form->header(extra_code => qq|<link rel="stylesheet" href="css/menuv4.css?id=" type="text/css">|);
49 $form->{date} = clock_line();
50 $form->{menu} = acc_menu();
51 my $callback = $form->unescape($form->{callback});
52 $callback = URI->new($callback)->rel($callback) if $callback;
53 $callback = "login.pl?action=company_logo" if $callback =~ /^(\.\/)?$/;
54 $form->{callback} = $callback;
56 print $form->parse_html_template("menu/menuv4");
61 my $form = $main::form;
63 my ($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat,
64 $Jahr, $Wochentag, $Jahrestag, $Sommerzeit)
68 $Monat = $Monat < 10 ? $Monat = "0" . $Monat : $Monat;
69 $Monatstag = $Monatstag < 10 ? $Monatstag = "0" . $Monatstag : $Monatstag;
71 my @Wochentage = ("Sonntag", "Montag", "Dienstag", "Mittwoch",
72 "Donnerstag", "Freitag", "Samstag");
73 my @Monatsnamen = ("", "Januar", "Februar", "März",
74 "April", "Mai", "Juni", "Juli",
75 "August", "September", "Oktober", "November",
78 $Wochentage[$Wochentag] . ", der "
85 my $form = $main::form;
86 my %myconfig = %main::myconfig;
88 my $mainlevel = $form->{level};
89 $mainlevel =~ s/\Q$mainlevel\E--//g;
90 my $menu = Menu->new("menu.ini");
94 return print_menu($menu);
98 my ($menu, $parent, $depth) = @_;
100 my $form = $main::form;
101 my %myconfig = %main::myconfig;
105 die if ($depth * 1 > 5);
109 @menuorder = $menu->access_control(\%myconfig, $parent);
111 $parent .= "--" if ($parent);
113 foreach my $item (@menuorder) {
114 substr($item, 0, length($parent)) = "";
115 next if (($item eq "") || ($item =~ /--/));
117 my $menu_item = $menu->{"${parent}${item}"};
118 my $menu_title = $::locale->text($item);
119 my $menu_text = $menu_title;
121 my $target = "main_window";
122 $target = $menu_item->{"target"} if ($menu_item->{"target"});
124 if ($menu_item->{"submenu"} || !defined($menu_item->{"module"}) ||
125 ($menu_item->{"module"} eq "menu.pl")) {
127 my $h = print_menu($menu, "${parent}${item}", $depth * 1 + 1)."\n";
129 $html .= qq|<ul><li><h2> ${menu_text} </h2><ul>${h}</ul></li></ul>\n|;
131 $html .= qq|<li><div class="x">${menu_text}</div><ul>${h}</ul></li>\n|;
135 $html .= qq|<li class='sub'>|;
139 $html .= $menu->menuitem_v3(\%myconfig, $form, "${parent}$item",
140 { "title" => $menu_title,
141 "target" => $target });
142 $html .= qq|${menu_text}</a></li>\n|;