--- loncom/interface/lonblockingmenu.pm 2024/12/20 00:24:38 1.31 +++ loncom/interface/lonblockingmenu.pm 2024/12/31 19:28:29 1.32 @@ -2,7 +2,7 @@ # Routines for configuring blocking of access to collaborative functions, # and specific resources during an exam # -# $Id: lonblockingmenu.pm,v 1.31 2024/12/20 00:24:38 raeburn Exp $ +# $Id: lonblockingmenu.pm,v 1.32 2024/12/31 19:28:29 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -623,6 +623,7 @@ sub handler { '
  • '.&mt("generating printouts of $lctype content").'
  • '. '
  • '.&mt("displaying the LON-CAPA gradebook in the $lctype").'
  • '. '
  • '.&mt("searching $lctype content by keyword").'
  • '. + '
  • '.&mt("displaying $lctype content indexed by keyword").'
  • '. '
  • '.&mt("accessing $lctype content in specified folders or resources").'
  • '. '
  • '.&mt("changing user's own password").'
  • '. ''. @@ -1661,10 +1662,11 @@ sub blocktype_text { 'passwd' => 'Change Password', 'grades' => 'Gradebook', 'search' => 'Content Search', + 'index' => 'Content Index', 'alert' => 'Critical Alert', 'reinit' => 'Course Re-init', ); - my $typeorder = ['com','chat','boards','port','groups','blogs','about','printout','docs','grades','search','alert','reinit','passwd']; + my $typeorder = ['com','chat','boards','port','groups','blogs','about','printout','docs','grades','search','index','alert','reinit','passwd']; return ($typeorder,\%types); }