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 #######################################################################
 
  35 use English qw(-no_match_vars);
 
  36 use List::Util qw(max);
 
  48   my $form     = $main::form;
 
  52 #   $form->{force_ul_width} = $ENV{HTTP_USER_AGENT} =~ m/MSIE\s+6\./;
 
  53 #   $form->{force_ul_width} = $ENV{HTTP_USER_AGENT} !~ m/Opera/;
 
  54   $form->{force_ul_width} = 1;
 
  55   $form->{date}           = clock_line();
 
  56   $form->{menu_items}     = acc_menu();
 
  57   my $callback            = $form->unescape($form->{callback});
 
  58   $callback               = URI->new($callback)->rel($callback) if $callback;
 
  59   $callback               = "login.pl?action=company_logo"      if $callback =~ /^(\.\/)?$/;
 
  60   $form->{callback}       = $callback;
 
  62   print $form->parse_html_template("menu/menunew");
 
  66   my $form     = $main::form;
 
  68   my ($Sekunden, $Minuten,   $Stunden,   $Monatstag, $Monat,
 
  69       $Jahr,     $Wochentag, $Jahrestag, $Sommerzeit)
 
  73   $Monat     = $Monat < 10     ? $Monat     = "0" . $Monat     : $Monat;
 
  74   $Monatstag = $Monatstag < 10 ? $Monatstag = "0" . $Monatstag : $Monatstag;
 
  76   my @Wochentage = ("Sonntag",    "Montag",  "Dienstag", "Mittwoch",
 
  77                     "Donnerstag", "Freitag", "Samstag");
 
  78   my @Monatsnamen = ("",       "Januar",    "Februar", "März",
 
  79                      "April",  "Mai",       "Juni",    "Juli",
 
  80                      "August", "September", "Oktober", "November",
 
  83       $Wochentage[$Wochentag] . ", der "
 
  90   my $form     = $main::form;
 
  91   my %myconfig = %main::myconfig;
 
  93   my $mainlevel =  $form->{level};
 
  94   $mainlevel    =~ s/\Q$mainlevel\E--//g;
 
  95   my $menu      = Menu->new('menu.ini');
 
  97   $English::AUTOFLUSH    =  1;
 
 100   create_menu($menu, $all_items);
 
 102   my $item = { 'subitems' => $all_items };
 
 103   calculate_width($item);
 
 108 sub calculate_width {
 
 111   $item->{max_width} = max map { length $_->{title} } @{ $item->{subitems} };
 
 113   foreach my $subitem (@{ $item->{subitems} }) {
 
 114     calculate_width($subitem) if ($subitem->{subitems});
 
 119   my ($menu, $all_items, $parent, $depth) = @_;
 
 122   my $form     = $main::form;
 
 123   my %myconfig = %main::myconfig;
 
 125   die if ($depth * 1 > 5);
 
 127   my @menuorder  = $menu->access_control(\%myconfig, $parent);
 
 128   $parent       .= "--" if ($parent);
 
 130   foreach my $name (@menuorder) {
 
 131     substr($name, 0, length($parent), "");
 
 132     next if (($name eq "") || ($name =~ /--/));
 
 134     my $menu_item = $menu->{"${parent}${name}"};
 
 135     my $item      = { 'title' => $::locale->text($name) };
 
 136     push @{ $all_items }, $item;
 
 138     if ($menu_item->{submenu} || !defined($menu_item->{module}) || ($menu_item->{module} eq "menu.pl")) {
 
 139       $item->{subitems} = [];
 
 140       create_menu($menu, $item->{subitems}, "${parent}${name}", $depth * 1 + 1);
 
 143       $menu->menuitem_new("${parent}${name}", $item);