###################################################################### # LedgerSMB Small Medium Business Accounting # http://www.ledgersmb.org/ # # Copyright (C) 2006 # This work contains copyrighted information from a number of sources all used # with permission. # # This file contains source code included with or based on SQL-Ledger which # is Copyright Dieter Simader and DWS Systems Inc. 2000-2005 and licensed # under the GNU General Public License version 2 or, at your option, any later # version. For a full list including contact information of contributors, # maintainers, and copyright holders, see the CONTRIBUTORS file. # # Original Copyright Notice from SQL-Ledger 2.6.17 (before the fork): # Copyright (c) 2000 # # Author: Dieter Simader # Email: dsimader@sql-ledger.org # Web: http://www.sql-ledger.org # # Contributors: Christopher Browne # Tony Fraser # # # Portions Copyright (c) 2000 # # Author: Dieter Simader # Email: dsimader@sql-ledger.org # Web: http://www.sql-ledger.org # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ####################################################################### # # menu for text based browsers (lynx) # ####################################################################### $menufile = "menu.ini"; use LedgerSMB::Menu; 1; # end of main sub display { $menu = new Menu "$menufile"; $menu->add_file("custom_$menufile") if -f "custom_$menufile"; $menu->add_file("$form->{login}_$menufile") if -f "$form->{login}_$menufile"; @menuorder = $menu->access_control(\%myconfig); $form->{title} = "LedgerSMB $form->{version}"; $form->header(1); $offset = int (21 - $#menuorder)/2; print "
";
  print "\n" x $offset;
  print "
"; print qq|
|; map { print "|; } @menuorder; print qq'
".$menu->menuitem(\%myconfig, \%$form, $_).$locale->text($_).qq|
'; } sub section_menu { $menu = new Menu "$menufile", $form->{level}; $menu->add_file("custom_$menufile") if -f "custom_$menufile"; $menu->add_file("$form->{login}_$menufile") if -f "$form->{login}_$menufile"; # build tiered menus @menuorder = $menu->access_control(\%myconfig, $form->{level}); foreach $item (@menuorder) { $a = $item; $item =~ s/^$form->{level}--//; push @neworder, $a unless ($item =~ /--/); } @menuorder = @neworder; $level = $form->{level}; $level =~ s/--/ /g; $form->{title} = $locale->text($level); $form->header; $offset = int (21 - $#menuorder)/2; print "
";
  print "\n" x $offset;
  print "
"; print qq|
|; foreach $item (@menuorder) { $label = $item; $label =~ s/$form->{level}--//g; # remove target $menu->{$item}{target} = ""; print ""; } print qq'
".$menu->menuitem(\%myconfig, \%$form, $item, $form->{level}).$locale->text($label)."
'; } sub acc_menu { §ion_menu; } sub menubar { $menu = new Menu "$menufile", ""; # build menubar @menuorder = $menu->access_control(\%myconfig, ""); @neworder = (); map { push @neworder, $_ unless ($_ =~ /--/) } @menuorder; @menuorder = @neworder; print "

"; $form->{script} = "menu.pl"; print "| "; foreach $item (@menuorder) { $label = $item; # remove target $menu->{$item}{target} = ""; print $menu->menuitem(\%myconfig, \%$form, $item, "").$locale->text($label)." | "; } }