version 1.4, 2009/05/12 21:20:42
|
version 1.28, 2014/02/12 20:37:42
|
Line 35 use Apache::lonnet;
|
Line 35 use Apache::lonnet;
|
use Apache::loncommon(); |
use Apache::loncommon(); |
use Apache::lonhtmlcommon(); |
use Apache::lonhtmlcommon(); |
use Apache::lonlocal; |
use Apache::lonlocal; |
|
use Apache::lonparmset(); |
|
|
sub print_header { |
sub print_header { |
my ($r,$phase,$context,$jscript) = @_; |
my ($r,$phase,$context,$jscript,$container) = @_; |
my ($pagetitle,$brcrumtitle,$action); |
my ($pagetitle,$brcrumtitle,$action,$call_category_check,$crstype); |
if ($context eq 'domain') { |
if ($context eq 'domain') { |
($pagetitle, $brcrumtitle) = ('View/Modify Domain Settings','Domain Settings'); |
($pagetitle, $brcrumtitle) = ('View/Modify Domain Settings','View/Modify Domain Settings'); |
$action = '/adm/domainprefs'; |
$action = '/adm/domainprefs'; |
|
if ($phase eq 'display') { |
|
my @actions = &Apache::loncommon::get_env_multiple('form.actions'); |
|
if (grep(/^coursecategories$/,@actions)) { |
|
$call_category_check = qq| |
|
if (formname == document.display) { |
|
if (!categoryCheck(formname)) { |
|
return; |
|
} |
|
} |
|
|; |
|
} |
|
} |
} else { |
} else { |
($pagetitle, $brcrumtitle) = ('Course Configuration','Course Configuration'); |
$crstype = &Apache::loncommon::course_type(); |
|
if ($crstype eq 'Community') { |
|
($pagetitle,$brcrumtitle) = ('Community Configuration','Community Configuration'); |
|
} else { |
|
($pagetitle,$brcrumtitle) = ('Course Configuration','Course Configuration'); |
|
} |
$action = '/adm/courseprefs'; |
$action = '/adm/courseprefs'; |
} |
} |
my $alert = &mt('You must select at least one functionality type to display.'); |
my $alert = &mt('You must select at least one functionality type to display.'); |
my $js = ' |
my $js = ' |
<script type="text/javascript"> |
<script type="text/javascript"> |
|
// <![CDATA[ |
|
|
function changePage(formname,newphase) { |
function changePage(formname,newphase) { |
formname.phase.value = newphase; |
formname.phase.value = newphase; |
numchecked = 0; |
numchecked = 0; |
Line 71 function changePage(formname,newphase) {
|
Line 91 function changePage(formname,newphase) {
|
return; |
return; |
} |
} |
} |
} |
|
'.$call_category_check.' |
formname.submit(); |
formname.submit(); |
}'."\n"; |
}'."\n"; |
if ($phase eq 'pickactions') { |
if ($phase eq 'pickactions') { |
|
$js .= &Apache::lonhtmlcommon::color_picker(); |
$js .= |
$js .= |
&Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox',numcols => 'radio',})."\n". |
&Apache::lonhtmlcommon::set_form_elements({actions => 'checkbox'})."\n"; |
&javascript_set_colnums(); |
|
} elsif ($phase eq 'display') { |
} elsif ($phase eq 'display') { |
|
$js .= &Apache::lonhtmlcommon::color_picker(); |
$js .= &color_pick_js()."\n"; |
$js .= &color_pick_js()."\n"; |
} |
} |
$js .= &Apache::loncommon::viewport_size_js().' |
$js .= &Apache::loncommon::viewport_size_js().' |
|
|
|
// ]]> |
</script> |
</script> |
'; |
'; |
if ($jscript) { |
if ($jscript) { |
Line 93 $jscript
|
Line 117 $jscript
|
my $additem; |
my $additem; |
if ($phase eq 'pickactions') { |
if ($phase eq 'pickactions') { |
my %loaditems = ( |
my %loaditems = ( |
'onload' => "javascript:getViewportDims(document.$phase.width,document.$phase.height);setDisplayColumns();setFormElements(document.pickactions);", |
'onload' => "setFormElements(document.pickactions);", |
); |
|
$additem = {'add_entries' => \%loaditems,}; |
|
} else { |
|
my %loaditems = ( |
|
'onload' => "javascript:getViewportDims(document.$phase.width,document.$phase.height);", |
|
); |
); |
$additem = {'add_entries' => \%loaditems,}; |
$additem = {'add_entries' => \%loaditems,}; |
} |
} |
Line 111 $jscript
|
Line 130 $jscript
|
<input type="hidden" name="pres_value" /> |
<input type="hidden" name="pres_value" /> |
</form> |
</form> |
'); |
'); |
|
if ($container) { |
|
&Apache::lonparmset::startSettingsScreen($r,$container,$crstype); |
|
} |
$r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'. |
$r->print('<form method="post" name="'.$phase.'" action="'.$action.'"'. |
' enctype="multipart/form-data">'); |
' enctype="multipart/form-data">'); |
return; |
return; |
} |
} |
|
|
sub print_footer { |
sub print_footer { |
my ($r,$phase,$newphase,$button_text,$actions) = @_; |
my ($r,$phase,$newphase,$button_text,$actions,$container) = @_; |
$button_text = &mt($button_text); |
$button_text = &mt($button_text); |
$r->print('<input type="hidden" name="phase" value="" />'. |
$r->print('<input type="hidden" name="phase" value="" />'); |
'<input type="hidden" name="width" value="'. |
if (defined($env{'form.origin'})) { |
$env{'form.width'}.'" />'. |
$r->print('<input type="hidden" name="origin" value="'.$env{'form.origin'}.'" />'."\n"); |
'<input type="hidden" name="height" value="'. |
} |
$env{'form.height'}.'" />'); |
|
if (($phase eq 'display') || ($phase eq 'process')) { |
if (($phase eq 'display') || ($phase eq 'process')) { |
if (ref($actions) eq 'ARRAY') { |
if (ref($actions) eq 'ARRAY') { |
foreach my $item (@{$actions}) { |
foreach my $item (@{$actions}) { |
$r->print('<input type="hidden" name="actions" value="'.$item.'" />')."\n"; |
$r->print('<input type="hidden" name="actions" value="'.$item.'" />'."\n"); |
} |
} |
} |
} |
$r->print('<input type="hidden" name="numcols" value="'.$env{'form.numcols'}.'" />'); |
|
} |
} |
my $dest='"javascript:changePage(document.'.$phase.','."'$newphase'".')"'; |
my $dest='"javascript:changePage(document.'.$phase.','."'$newphase'".')"'; |
if ($phase eq 'process') { |
if ($phase eq 'process') { |
$r->print('<p><a href='.$dest.'>'.$button_text.'</a></p>'); |
$r->print( |
|
&Apache::lonhtmlcommon::actionbox( |
|
['<a href='.$dest.'>'.$button_text.'</a>'])); |
} else { |
} else { |
my $onclick; |
my $onclick; |
if ($phase eq 'display') { |
if ($phase eq 'display') { |
Line 146 sub print_footer {
|
Line 168 sub print_footer {
|
$button_text.'" onclick='.$onclick.' /></p>'); |
$button_text.'" onclick='.$onclick.' /></p>'); |
} |
} |
if ($phase eq 'process') { |
if ($phase eq 'process') { |
$r->print('</form>'.&Apache::loncommon::end_page()); |
$r->print('</form>'); |
|
if ($container) { |
|
&Apache::lonparmset::endSettingsScreen($r); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
} |
} |
return; |
return; |
} |
} |
|
|
sub make_changes { |
sub make_changes { |
my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles,$allitems) = @_; |
my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$roles,$allitems,$container) = @_; |
my %brcrumtext = &get_crumb_text(); |
my %brcrumtext = &get_crumb_text(); |
my @actions = &Apache::loncommon::get_env_multiple('form.actions'); |
my @actions = &Apache::loncommon::get_env_multiple('form.actions'); |
my ($numchanged,%changes,%disallowed); |
my ($numchanged,%changes,%disallowed); |
Line 161 sub make_changes {
|
Line 187 sub make_changes {
|
text=>$brcrumtext{$context}}, |
text=>$brcrumtext{$context}}, |
{href=>"javascript:changePage(document.$phase,'$phase')", |
{href=>"javascript:changePage(document.$phase,'$phase')", |
text=>"Updated"}); |
text=>"Updated"}); |
&print_header($r,$phase,$context); |
&print_header($r,$phase,$context,undef,$container); |
|
my ($crstype,%lastact); |
|
if ($context eq 'course') { |
|
$crstype = &Apache::loncommon::course_type(); |
|
} |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && |
(ref($prefs) eq 'HASH')) { |
(ref($prefs) eq 'HASH')) { |
foreach my $item (@{$prefs_order}) { |
foreach my $item (@{$prefs_order}) { |
Line 169 sub make_changes {
|
Line 199 sub make_changes {
|
if ($context eq 'domain') { |
if ($context eq 'domain') { |
$r->print('<h3>'.&mt($prefs->{$item}{'text'}).'</h3>'. |
$r->print('<h3>'.&mt($prefs->{$item}{'text'}).'</h3>'. |
&Apache::domainprefs::process_changes($r,$dom, |
&Apache::domainprefs::process_changes($r,$dom, |
$confname,$item,$roles,$values,)); |
$confname,$item,$roles,$values,\%lastact)); |
} else { |
} else { |
$changes{$item} = {}; |
$changes{$item} = {}; |
&Apache::courseprefs::process_changes($dom,$item,$values, |
&Apache::courseprefs::process_changes($dom,$item,$values, |
$prefs->{$item},$changes{$item}, |
$prefs->{$item},$changes{$item}, |
$allitems,\%disallowed); |
$allitems,\%disallowed,$crstype); |
if (keys(%{$changes{$item}}) > 0) { |
if (keys(%{$changes{$item}}) > 0) { |
$numchanged ++; |
$numchanged ++; |
} |
} |
Line 184 sub make_changes {
|
Line 214 sub make_changes {
|
} |
} |
if ($context eq 'course') { |
if ($context eq 'course') { |
if ($numchanged) { |
if ($numchanged) { |
$r->print(&Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, |
my $message = &Apache::courseprefs::store_changes($dom,$confname,$prefs_order,\@actions, |
$prefs,$values,\%changes)); |
$prefs,$values,\%changes,$crstype); |
|
$r->print(&Apache::loncommon::confirmwrapper($message)); |
} else { |
} else { |
$r->print(&mt('No changes made to course configuration.')); |
if ($crstype eq 'Community') { |
|
$r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to community configuration."))); |
|
} else { |
|
$r->print(&Apache::loncommon::confirmwrapper(&mt("No changes made to course configuration."))); |
|
} |
} |
} |
if (keys(%disallowed) > 0) { |
if (keys(%disallowed) > 0) { |
$r->print('<p>'); |
$r->print('<p>'); |
Line 195 sub make_changes {
|
Line 230 sub make_changes {
|
if (ref($disallowed{$item}) eq 'HASH') { |
if (ref($disallowed{$item}) eq 'HASH') { |
if (keys(%{$disallowed{$item}}) > 0) { |
if (keys(%{$disallowed{$item}}) > 0) { |
$r->print(&Apache::courseprefs::display_disallowed($item,$disallowed{$item}, |
$r->print(&Apache::courseprefs::display_disallowed($item,$disallowed{$item}, |
$prefs)); |
$prefs,$crstype)); |
} |
} |
} |
} |
} |
} |
Line 207 sub make_changes {
|
Line 242 sub make_changes {
|
if ($context eq 'course') { |
if ($context eq 'course') { |
$footer_text = 'Back to display/edit settings'; |
$footer_text = 'Back to display/edit settings'; |
} |
} |
&print_footer($r,$phase,'display',$footer_text,\@actions); |
&print_footer($r,$phase,'display',$footer_text,\@actions,$container); |
$r->print('</p>'); |
$r->print('</p>'); |
|
return \%lastact; |
} |
} |
|
|
sub display_settings { |
sub display_settings { |
my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$jscript, |
my ($r,$dom,$phase,$context,$prefs_order,$prefs,$values,$confname,$jscript, |
$allitems) = @_; |
$allitems,$crstype,$container) = @_; |
my %brcrumtext = &get_crumb_text(); |
my %brcrumtext = &get_crumb_text(); |
my @actions = &Apache::loncommon::get_env_multiple('form.actions'); |
my @actions = &Apache::loncommon::get_env_multiple('form.actions'); |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:changePage(document.$phase,'display')", |
({href=>"javascript:changePage(document.$phase,'display')", |
text=>"Display/Edit Settings"}); |
text=>"Display/Edit Settings"}); |
&print_header($r,$phase,$context,$jscript); |
&print_header($r,$phase,$context,$jscript,$container); |
|
my $divwidth = 900; |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) { |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH') && (ref($values) eq 'HASH')) { |
if (@actions > 0) { |
if (@actions > 0) { |
my $rowsum = 0; |
my $rowsum = 0; |
my (%output,%rowtotal,@items); |
my (%output,%rowtotal,@items); |
my $halfway = @actions/2; |
|
foreach my $item (@{$prefs_order}) { |
foreach my $item (@{$prefs_order}) { |
if (grep(/^\Q$item\E$/,@actions)) { |
if (grep(/^\Q$item\E$/,@actions)) { |
push(@items,$item); |
push(@items,$item); |
if ($context eq 'domain') { |
if ($context eq 'domain') { |
|
my $settings = $values->{$item}; |
|
if ($item eq 'usersessions') { |
|
$r->print('<script type="text/javascript">'."\n". |
|
'// <![CDATA['."\n". |
|
&Apache::loncommon::check_uncheck_jscript()."\n". |
|
'// ]]>'."\n". |
|
'</script>'."\n"); |
|
} elsif ($item eq 'selfcreation') { |
|
$settings = $values->{'usercreation'}; |
|
} |
($output{$item},$rowtotal{$item}) = |
($output{$item},$rowtotal{$item}) = |
&Apache::domainprefs::print_config_box($r,$dom,$confname, |
&Apache::domainprefs::print_config_box($r,$dom,$confname, |
$phase,$item,$prefs->{$item},$values->{$item}); |
$phase,$item,$prefs->{$item},$settings); |
} else { |
} else { |
($output{$item},$rowtotal{$item}) = |
($output{$item},$rowtotal{$item}) = |
&Apache::courseprefs::print_config_box($r,$dom,$phase, |
&Apache::courseprefs::print_config_box($r,$dom,$phase, |
$item,$prefs->{$item},$values,$allitems); |
$item,$prefs->{$item},$values,$allitems,$crstype); |
} |
} |
$rowsum += $rowtotal{$item}; |
$rowsum += $rowtotal{$item}; |
} |
} |
} |
} |
my $colend; |
$r->print('<div id="prefs" style="max-width:'.$divwidth.'px;margin: 10px auto 10px auto;">'); |
my $halfway = $rowsum/2; |
|
my $aggregate = 0; |
|
my $sumleft = 0; |
|
my $sumright = 0; |
|
my $crossover; |
|
for (my $i=0; $i<@items; $i++) { |
for (my $i=0; $i<@items; $i++) { |
$aggregate += $rowtotal{$items[$i]}; |
|
if ($aggregate > $halfway) { |
|
$crossover = $i; |
|
last; |
|
} |
|
} |
|
for (my $i=0; $i<$crossover; $i++) { |
|
$sumleft += $rowtotal{$items[$i]}; |
|
} |
|
for (my $i=$crossover+1; $i<@items; $i++) { |
|
$sumright += $rowtotal{$items[$i]}; |
|
} |
|
if ((@items > 1) && ($env{'form.numcols'} == 2)) { |
|
my $sumdiff = $sumright - $sumleft; |
|
if ($sumdiff > 0) { |
|
$colend = $crossover + 1; |
|
} else { |
|
$colend = $crossover; |
|
} |
|
} else { |
|
$colend = @items; |
|
} |
|
$r->print('<p><table class="LC_double_column"><tr><td class="LC_left_col">'); for (my $i=0; $i<$colend; $i++) { |
|
$r->print($output{$items[$i]}); |
$r->print($output{$items[$i]}); |
} |
} |
$r->print('</td><td></td><td class="LC_right_col">'); |
$r->print('</div>'); |
if ($colend < @items) { |
$r->print(&print_footer($r,$phase,'process','Save Changes',\@actions,$container)); |
for (my $i=$colend; $i<@items; $i++) { |
|
$r->print($output{$items[$i]}); |
|
} |
|
} |
|
$r->print('</td></tr></table></p>'); |
|
$r->print(&print_footer($r,$phase,'process','Save',\@actions)); |
|
} else { |
} else { |
$r->print('<input type="hidden" name="phase" value="" />'. |
$r->print('<input type="hidden" name="phase" value="" />'. |
'<input type="hidden" name="numcols" value="'. |
'<span class="LC_error">'.&mt('No settings chosen'). |
$env{'form.numcols'}.'" />'."\n". |
'</span>'); |
'<span class="LC_error">'.&mt('No settings chosen'). |
|
'</span>'); |
|
} |
} |
$r->print('</form>'); |
$r->print('</form>'); |
} |
} |
|
if ($container) { |
|
&Apache::lonparmset::endSettingsScreen($r); |
|
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
return; |
return; |
} |
} |
|
|
sub display_choices { |
sub display_choices { |
my ($r,$phase,$context,$prefs_order,$prefs) = @_; |
my ($r,$phase,$context,$prefs_order,$prefs,$container) = @_; |
if ($phase eq '') { |
if ($phase eq '') { |
$phase = 'pickactions'; |
$phase = 'pickactions'; |
} |
} |
my %helphash; |
my %helphash; |
&print_header($r,$phase,$context); |
&print_header($r,$phase,$context,undef,$container); |
$r->print('<h3>'.&mt('Functionality to display/modify').'</h3>'); |
|
$r->print('<script type="text/javascript">'."\n". |
$r->print('<script type="text/javascript">'."\n". |
|
'// <![CDATA['."\n". |
&Apache::loncommon::check_uncheck_jscript()."\n". |
&Apache::loncommon::check_uncheck_jscript()."\n". |
'</script>'."\n".'<p><input type="button" value="'.&mt('check all').'" '. |
'// ]]>'."\n". |
|
'</script>'."\n"); |
|
$r->print('<h3>'.&mt('Settings to display/modify').'</h3>'. |
|
'<div><input type="button" value="'.&mt('check all').'" '. |
'onclick="javascript:checkAll(document.pickactions.actions)"'. |
'onclick="javascript:checkAll(document.pickactions.actions)"'. |
' />'.(' 'x2). |
' />'.(' 'x2). |
'<input type="button" value="'.&mt('uncheck all').'" '. |
'<input type="button" value="'.&mt('uncheck all').'" '. |
'onclick="javascript:uncheckAll(document.pickactions.actions)"'. |
'onclick="javascript:uncheckAll(document.pickactions.actions)" />'. |
' /></p><div class="LC_left_float">'); |
"\n". |
my ($numitems,$midpoint,$seconddiv,$count); |
'</div><div class="LC_left_float">'); |
|
my ($numitems,$maxincol,$firstthird,$secondthird,$seconddiv,$thirddiv,$count); |
if (ref($prefs_order) eq 'ARRAY') { |
if (ref($prefs_order) eq 'ARRAY') { |
$numitems = @{$prefs_order}; |
$numitems = @{$prefs_order}; |
} |
} |
$midpoint = int($numitems/2); |
my $numcols = 3; |
if ($numitems%2) { |
$maxincol = int($numitems/$numcols); |
$midpoint ++; |
if ($numitems%$numcols) { |
|
$maxincol ++; |
} |
} |
|
$firstthird = $maxincol; |
|
$secondthird = $firstthird + $maxincol; |
$count = 0; |
$count = 0; |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH')) { |
if ((ref($prefs_order) eq 'ARRAY') && (ref($prefs) eq 'HASH')) { |
foreach my $item (@{$prefs_order}) { |
foreach my $item (@{$prefs_order}) { |
Line 325 sub display_choices {
|
Line 345 sub display_choices {
|
'<label><input type="checkbox" name="actions" value="'.$item. |
'<label><input type="checkbox" name="actions" value="'.$item. |
'" /> '.&mt($prefs->{$item}->{'text'}).'</label></h4>'); |
'" /> '.&mt($prefs->{$item}->{'text'}).'</label></h4>'); |
$count ++; |
$count ++; |
if ((!$seconddiv) && ($count >= $midpoint)) { |
if ((!$seconddiv) && ($count >= $firstthird)) { |
$r->print('</div>'."\n".'<div class="LC_left_float">'."\n"); |
$r->print('</div>'."\n".'<div class="LC_left_float">'."\n"); |
$seconddiv = 1; |
$seconddiv = 1; |
} |
} |
|
if ((!$thirddiv) && ($count >= $secondthird)) { |
|
$r->print('</div>'."\n".'<div class="LC_left_float">'."\n"); |
|
$thirddiv = 1; |
|
} |
} |
} |
$r->print('</div><div class="LC_clear_float_footer"></div><h3>'. |
$r->print('</div><br clear="all" />'); |
&mt('Display options').'</h3>'."\n". |
|
'<p><span class="LC_nobreak">'.&mt('Display using: ')."\n". |
|
'<label><input type="radio" name="numcols" value="1" />'. |
|
&mt('one column').'</label> <label>'. |
|
'<input type="radio" name="numcols" value="2" />'. |
|
&mt('two columns').'</label></span></p>'); |
|
} |
} |
$r->print(&print_footer($r,$phase,'display','Go')); |
$r->print(&print_footer($r,$phase,'display','Display',undef,$container)); |
$r->print('</form>'); |
$r->print('</form>'); |
|
if ($container) { |
|
&Apache::lonparmset::endSettingsScreen($r); |
|
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
return; |
return; |
} |
} |
|
|
sub javascript_set_colnums { |
|
return <<END; |
|
function setDisplayColumns() { |
|
if (document.pickactions.width.value > 1100) { |
|
document.pickactions.numcols[1].checked = true; |
|
} else { |
|
document.pickactions.numcols[0].checked = true; |
|
} |
|
} |
|
END |
|
} |
|
|
|
sub color_pick_js { |
sub color_pick_js { |
my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); |
my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); |
my $output = <<"ENDCOL"; |
my $output = <<"ENDCOL"; |
function pclose() { |
|
parmwin=window.open("/adm/rat/empty.html","LONCAPAparms","height=350,width=350,scrollbars=no,menubar=no"); |
|
parmwin.close(); |
|
} |
|
|
|
$pjump_def |
$pjump_def |
|
|
function psub() { |
function psub() { |
pclose(); |
modalWindow.close(); |
if (document.parmform.pres_marker.value!='') { |
if (document.parmform.pres_marker.value!='') { |
if (document.parmform.pres_type.value!='') { |
if (document.parmform.pres_type.value!='') { |
eval('document.display.'+ |
eval('document.display.'+ |