--- loncom/interface/lonparmset.pm 2018/09/14 18:27:49 1.586 +++ loncom/interface/lonparmset.pm 2018/11/13 03:59:00 1.587 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set parameters for assessments # -# $Id: lonparmset.pm,v 1.586 2018/09/14 18:27:49 raeburn Exp $ +# $Id: lonparmset.pm,v 1.587 2018/11/13 03:59:00 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2101,6 +2101,7 @@ sub lookUpTableParameter { 'buttonshide' => 'hiding', 'turnoffeditor' => 'hiding', 'encrypturl' => 'hiding', + 'deeplink' => 'hiding', 'randomorder' => 'high_level_randomization', 'randompick' => 'high_level_randomization', 'available' => 'slots', @@ -4660,8 +4661,15 @@ my %strings = ['no','No']], 'string_ip' => [['_allowfrom_','Hostname(s), or IP(s) from which access is allowed'], - ['_denyfrom_',], 'Hostname(s) or IP(s) from which access is disallowed'], - ); + ['_denyfrom_','Hostname(s) or IP(s) from which access is disallowed']], + 'string_deeplink' + => [['full','Displayed (linked) in Contents and Grades'], + ['absent','Not displayed in Contents or Grades'], + ['grades','Displayed in Grades only'], + ['details','Displayed (unlinked) in Contents and Grades'], + ['datestatus','Displayed (with status), but unlinked in Contents and Grades']], + ); + my %stringmatches = ( 'string_lenient' @@ -4678,6 +4686,7 @@ my %stringtypes = ( discussvote => 'string_discussvote', examcode => 'string_examcode', acc => 'string_ip', + deeplink => 'string_deeplink', ); # Returns the possible values and titles for a given string type, or undef if there are none.