--- loncom/interface/lonmenu.pm 2003/03/10 20:21:45 1.47 +++ loncom/interface/lonmenu.pm 2003/04/02 22:02:19 1.48 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Routines to control the menu # -# $Id: lonmenu.pm,v 1.47 2003/03/10 20:21:45 matthew Exp $ +# $Id: lonmenu.pm,v 1.48 2003/04/02 22:02:19 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -25,12 +25,16 @@ # # http://www.lon-capa.org/ # -# (TeX Conversion Module # -# 05/29/00,05/30 Gerd Kortemeyer) +# There are two parameters controlling the action of this module: +# +# browser.interface - if this is 'textual', it overrides the second parameter +# and goes to screen reader PDA mode +# +# environment.remote - if this is 'on', the routines controll the remote +# control, otherwise they render the main window controls; ignored it +# browser.interface is 'textual' # -# 10/05,05/28,05/30,06/01,06/08,06/09,07/04,08/07 Gerd Kortemeyer -# 02/15/02 Matthew Hall package Apache::lonmenu; @@ -48,9 +52,9 @@ sub menubuttons { my $forcereg=shift; my $target =shift; my $registration=shift; - unless ($ENV{'browser.interface'} eq 'textual') { return ''; } + if ($ENV{'browser.interface'} eq 'textual') { # Textual display only - my $output=(< // BEGIN LON-CAPA Internal @@ -59,8 +63,25 @@ sub menubuttons { // END LON-CAPA Internal ENDMAINMENU - if ($registration) { $output.=&innerregister($forcereg,$target); } - return $output."
"; + if ($registration) { $output.=&innerregister($forcereg,$target); } + return $output."
"; + } elsif ($ENV{'environment.remote'} eq 'off') { +# Remote Control is switched off + my $output=(< +// BEGIN LON-CAPA Internal + +Main Menu +Launch Remote Control + +ENDINLINEMENU + if ($registration) { $output.=&innerregister($forcereg,$target); } + return $output."
"; + } else { + return ''; + } } # ====================================== This gets called in the header section