1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
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 # routines for menu items
33 #=====================================================================
38 $main::lxdebug->enter_sub();
40 my ($type, $menufile, $level) = @_;
43 my $self = Inifile->new($menufile, $level);
45 $main::lxdebug->leave_sub();
51 $main::lxdebug->enter_sub();
53 my ($self, $myconfig, $form, $item) = @_;
55 my $module = $form->{script};
56 my $action = "section_menu";
59 if ($self->{$item}{module}) {
60 $module = $self->{$item}{module};
62 if ($self->{$item}{action}) {
63 $action = $self->{$item}{action};
65 if ($self->{$item}{target}) {
66 $target = $self->{$item}{target};
69 my $level = $form->escape($item);
72 qq|<a style="vertical-align:top" href=$module?path=$form->{path}&action=$action&level=$level&login=$form->{login}&password=$form->{password}|;
74 my @vars = qw(module action target href);
76 if ($self->{$item}{href}) {
77 $str = qq|<a href=$self->{$item}{href}|;
78 @vars = qw(module target href);
81 map { delete $self->{$item}{$_} } @vars;
84 foreach my $key (keys %{ $self->{$item} }) {
85 $str .= "&" . $form->escape($key, 1) . "=";
86 ($value, $conf) = split /=/, $self->{$item}{$key}, 2;
87 $value = $myconfig->{$value} . "/$conf" if ($conf);
88 $str .= $form->escape($value, 1);
92 $str .= qq| target=$target|;
97 $main::lxdebug->leave_sub();
103 my ($self, $myconfig, $form, $item) = @_;
105 my $module = $form->{script};
106 my $action = "section_menu";
108 #if ($self->{$item}{module}) {
109 $module = $self->{$item}{module};
112 if ($self->{$item}{action}) {
113 $action = $self->{$item}{action};
116 my $level = $form->escape($item);
118 qq|$module?path=$form->{path}&action=$action&level=$level&login=$form->{login}&password=$form->{password}|;
119 my @vars = qw(module action target href);
121 if ($self->{$item}{href}) {
122 $str = qq|$self->{$item}{href}|;
123 @vars = qw(module target href);
126 map { delete $self->{$item}{$_} } @vars;
129 foreach my $key (keys %{ $self->{$item} }) {
130 $str .= "&" . $form->escape($key, 1) . "=";
131 ($value, $conf) = split /=/, $self->{$item}{$key}, 2;
132 $value = $myconfig->{$value} . "/$conf" if ($conf);
133 $str .= $form->escape($value, 1);
141 $main::lxdebug->enter_sub(2);
143 my ($self, $myconfig, $menulevel) = @_;
147 if ($menulevel eq "") {
148 @menu = grep { !/--/ } @{ $self->{ORDER} };
150 @menu = grep { /^${menulevel}--/ } @{ $self->{ORDER} };
153 my @a = split /;/, $myconfig->{acs};
156 # remove --AR, --AP from array
157 grep { ($a, $b) = split /--/; s/--$a$//; } @a;
159 map { $excl{$_} = 1 } @a;
162 map { push @a, $_ unless $excl{$_} } (@menu);
164 $main::lxdebug->leave_sub(2);
170 my ($self, $menulevel, $hash) = @_;
172 my @items = $self->access_control(\%main::myconfig, $menulevel);
174 $menulevel =~ s/[^A-Za-z_\/\.\+\-]/_/g;
175 $hash->{"access_" . lc($menulevel)} = 1 if ($menulevel);
177 foreach my $item (@items) {
178 $self->generate_acl($item, $hash); #unless ($menulevel);