diff options
Diffstat (limited to 'LedgerSMB/Menu.pm')
-rw-r--r-- | LedgerSMB/Menu.pm | 136 |
1 files changed, 67 insertions, 69 deletions
diff --git a/LedgerSMB/Menu.pm b/LedgerSMB/Menu.pm index 344bb7d7..d8aad77c 100644 --- a/LedgerSMB/Menu.pm +++ b/LedgerSMB/Menu.pm @@ -1,8 +1,8 @@ #===================================================================== -# LedgerSMB +# LedgerSMB # Small Medium Business Accounting software # http://www.ledgersmb.org/ -# +# # Copyright (C) 2006 # This work contains copyrighted information from a number of sources all used # with permission. @@ -36,85 +36,83 @@ package Menu; use LedgerSMB::Inifile; @ISA = qw/Inifile/; - sub menuitem { - my ($self, $myconfig, $form, $item) = @_; - - my $module = ($self->{$item}{module}) - ? $self->{$item}{module} : $form->{script}; - my $action = ($self->{$item}{action}) - ? $self->{$item}{action} : "section_menu"; - my $target = ($self->{$item}{target}) - ? $self->{$item}{target} : ""; - - my $level = $form->escape($item); - my $str = qq|<a style="display:block;"|. - qq|href="$module?path=$form->{path}&action=$action&|. - qq|level=$level&login=$form->{login}&|. - qq|timeout=$form->{timeout}&sessionid=$form->{sessionid}|. - qq|&js=$form->{js}|; - - my @vars = qw(module action target href); - - if ($self->{$item}{href}) { - $str = qq|<a href="$self->{$item}{href}|; - @vars = qw(module target href); - } - - for (@vars) { delete $self->{$item}{$_} } - - delete $self->{$item}{submenu}; - - # add other params - foreach my $key (keys %{ $self->{$item} }) { - $str .= "&".$form->escape($key)."="; - ($value, $conf) = split /=/, $self->{$item}{$key}, 2; - $value = "$myconfig->{$value}$conf" - if $self->{$item}{$key} =~ /=/; - - $str .= $form->escape($value); - } - - $str .= qq|#id$form->{tag}| if $target eq 'acc_menu'; - - if ($target) { - $str .= qq|" target="$target"|; - } - else{ - $str .= '"'; - } - - $str .= qq|>|; - -} + my ( $self, $myconfig, $form, $item ) = @_; + my $module = + ( $self->{$item}{module} ) ? $self->{$item}{module} : $form->{script}; + my $action = + ( $self->{$item}{action} ) ? $self->{$item}{action} : "section_menu"; + my $target = ( $self->{$item}{target} ) ? $self->{$item}{target} : ""; -sub access_control { - my ($self, $myconfig, $menulevel) = @_; - - my @menu = (); + my $level = $form->escape($item); + my $str = + qq|<a style="display:block;"| + . qq|href="$module?path=$form->{path}&action=$action&| + . qq|level=$level&login=$form->{login}&| + . qq|timeout=$form->{timeout}&sessionid=$form->{sessionid}| + . qq|&js=$form->{js}|; + + my @vars = qw(module action target href); - if ($menulevel eq "") { - @menu = grep { !/--/ } @{ $self->{ORDER} }; - } else { - @menu = grep { /^${menulevel}--/; } @{ $self->{ORDER} }; - } + if ( $self->{$item}{href} ) { + $str = qq|<a href="$self->{$item}{href}|; + @vars = qw(module target href); + } - my @a = split /;/, $myconfig->{acs}; - my $excl = (); + for (@vars) { delete $self->{$item}{$_} } - # remove --AR, --AP from array - grep { ($a, $b) = split /--/; s/--$a$//; } @a; + delete $self->{$item}{submenu}; - for (@a) { $excl{$_} = 1 } + # add other params + foreach my $key ( keys %{ $self->{$item} } ) { + $str .= "&" . $form->escape($key) . "="; + ( $value, $conf ) = split /=/, $self->{$item}{$key}, 2; + $value = "$myconfig->{$value}$conf" + if $self->{$item}{$key} =~ /=/; - @a = (); - for (@menu) { push @a, $_ unless $excl{$_} } + $str .= $form->escape($value); + } - @a; + $str .= qq|#id$form->{tag}| if $target eq 'acc_menu'; + + if ($target) { + $str .= qq|" target="$target"|; + } + else { + $str .= '"'; + } + + $str .= qq|>|; } +sub access_control { + my ( $self, $myconfig, $menulevel ) = @_; + + my @menu = (); + + if ( $menulevel eq "" ) { + @menu = grep { !/--/ } @{ $self->{ORDER} }; + } + else { + @menu = grep { /^${menulevel}--/; } @{ $self->{ORDER} }; + } + + my @a = split /;/, $myconfig->{acs}; + my $excl = (); + + # remove --AR, --AP from array + grep { ( $a, $b ) = split /--/; s/--$a$//; } @a; + + for (@a) { $excl{$_} = 1 } + + @a = (); + for (@menu) { push @a, $_ unless $excl{$_} } + + @a; + +} 1; |