--- loncom/interface/lonconfigsettings.pm 2017/07/27 13:45:12 1.35
+++ loncom/interface/lonconfigsettings.pm 2022/03/12 21:24:17 1.62
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set domain-wide configuration settings
#
-# $Id: lonconfigsettings.pm,v 1.35 2017/07/27 13:45:12 raeburn Exp $
+# $Id: lonconfigsettings.pm,v 1.62 2022/03/12 21:24:17 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -40,9 +40,9 @@ use Apache::courseclassifier();
use LONCAPA qw(:DEFAULT :match);
sub print_header {
- my ($r,$phase,$context,$jscript,$container,$instcode,$dom) = @_;
+ my ($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values) = @_;
my ($pagetitle,$brcrumtitle,$action,$call_category_check,$instcode_check,
- $crstype,@actions,@code_order);
+ $linkprot_check,$crstype,@actions,@code_order);
if ($phase eq 'display') {
@actions = &Apache::loncommon::get_env_multiple('form.actions');
}
@@ -116,6 +116,110 @@ sub print_header {
ENDSCRIPT
}
}
+ if (($context eq 'course') && ($phase eq 'display') &&
+ (grep(/^linkprot$/,@actions))) {
+ my $allowed;
+ my $home = &Apache::lonnet::homeserver($confname,$dom);
+ unless ($home eq 'no_host') {
+ my @ids=&Apache::lonnet::current_machine_ids();
+ foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
+ }
+ if ($allowed) {
+ my (@changeable,@settable);
+ if (ref($values->{'linkprot'}) eq 'HASH') {
+ if (keys(%{$values->{'linkprot'}})) {
+ my @current = sort { $a <=> $b } keys(%{$values->{'linkprot'}});
+ if (@current) {
+ for (my $i=0; $i<@current; $i++) {
+ my $num = $current[$i];
+ if (ref($values->{'linkprot'}->{$num}) eq 'HASH') {
+ if ($values->{'linkprot'}->{$num}->{'usable'}) {
+ push(@changeable,$i);
+ } else {
+ push(@settable,$i);
+ }
+ }
+ }
+ }
+ }
+ }
+ my ($numrules,$intargjs);
+$linkprot_check .= <
'.$errors.'
'); + } } $r->print('');
my $footer_text = 'Back to configuration display';
@@ -363,7 +594,7 @@ sub display_settings {
if (ref($values) eq 'HASH') {
$instcode = $values->{'internal.coursecode'};
}
- &print_header($r,$phase,$context,$jscript,$container,$instcode,$dom);
+ &print_header($r,$phase,$context,$jscript,$container,$instcode,$dom,$confname,$values);
my $divwidth = 900;
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) {
if (@actions > 0) {
@@ -410,13 +641,23 @@ sub display_settings {
$settings = $inststatus;
}
}
+ } elsif ($item eq 'lti') {
+ if (ref($values->{'ltisec'}) eq 'HASH') {
+ if (ref($values->{'lti'}) eq 'HASH') {
+ $settings = {%{$values->{'lti'}},%{$values->{'ltisec'}}};
+ } else {
+ $settings = $values->{'ltisec'};
+ }
+ } elsif (ref($values->{'lti'}) eq 'HASH') {
+ $settings = $values->{'lti'};
+ }
}
($output{$item},$rowtotal{$item}) =
&Apache::domainprefs::print_config_box($r,$dom,$confname,
$phase,$item,$prefs->{$item},$settings);
} else {
($output{$item},$rowtotal{$item}) =
- &Apache::courseprefs::print_config_box($r,$dom,$phase,
+ &Apache::courseprefs::print_config_box($r,$dom,$confname,$phase,
$item,$prefs->{$item},$values,$allitems,$crstype,$parm_permission);
}
$rowsum += $rowtotal{$item};
@@ -496,8 +737,8 @@ sub display_choices {
$thirddiv = 1;
}
}
- $r->print('
');
}
+ $r->print('