version 1.65, 2012/08/15 14:37:13
|
version 1.66, 2013/03/01 04:48:59
|
Line 134 sub handler {
|
Line 134 sub handler {
|
my $action = $env{'form.action'}; |
my $action = $env{'form.action'}; |
my $state = $env{'form.state'}; |
my $state = $env{'form.state'}; |
my (%states,%stored); |
my (%states,%stored); |
my ($jscript,$uname,$udom,$result,$warning); |
my ($jscript,$uname,$udom,$result,$warning,$showcredits,$instcredits); |
|
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
if ($domdefs{'officialcredits'} || $domdefs{'unofficialcredits'}) { |
|
$showcredits = 1; |
|
} |
|
|
$states{'display'} = ['details']; |
$states{'display'} = ['details']; |
$states{'view'} = ['pick_request','details','cancel','removal']; |
$states{'view'} = ['pick_request','details','cancel','removal']; |
Line 180 sub handler {
|
Line 184 sub handler {
|
$trail{'enrollment'} = 'Enrollment'; |
$trail{'enrollment'} = 'Enrollment'; |
} |
} |
|
|
my ($page,$crumb,$newinstcode,$codechk,$checkedcode,$description) = |
my ($page,$crumb,$newinstcode,$codechk,$checkedcode,$description) = |
&get_breadcrumbs($dom,$action,\$state,\%states,\%trail); |
&get_breadcrumbs($dom,$action,\$state,\%states,\%trail); |
if ($action eq 'display') { |
if ($action eq 'display') { |
if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) { |
if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) { |
Line 269 sub handler {
|
Line 273 sub handler {
|
} |
} |
} |
} |
} |
} |
my %elements = &form_elements($dom); |
(my $elements,$instcredits) = &form_elements($dom,$showcredits); |
my $elementsref = {}; |
my $elementsref = {}; |
if (ref($elements{$action}) eq 'HASH') { |
if ((ref($elements) eq 'HASH') && (ref($elements->{$action}) eq 'HASH')) { |
if (ref($elements{$action}{$state}) eq 'HASH') { |
if (ref($elements->{$action}{$state}) eq 'HASH') { |
$elementsref = $elements{$action}{$state}; |
$elementsref = $elements->{$action}{$state}; |
} |
} |
} |
} |
if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) { |
if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) { |
Line 307 sub handler {
|
Line 311 sub handler {
|
&request_administration($r,$action,$state,$page,\%states,$dom, |
&request_administration($r,$action,$state,$page,\%states,$dom, |
$jscript,$loaditems,$crumb,$newinstcode, |
$jscript,$loaditems,$crumb,$newinstcode, |
$codechk,$checkedcode,$description, |
$codechk,$checkedcode,$description, |
\@invalidcrosslist); |
$showcredits,$instcredits,\@invalidcrosslist); |
} |
} |
} else { |
} else { |
$r->print(&header('Course/Community Requests').$crumb. |
$r->print(&header('Course/Community Requests').$crumb. |
Line 320 sub handler {
|
Line 324 sub handler {
|
&print_main_menu($r,\%can_request,\%states,$dom,$jscript,$loaditems,$crumb,\%request_domains); |
&print_main_menu($r,\%can_request,\%states,$dom,$jscript,$loaditems,$crumb,\%request_domains); |
} else { |
} else { |
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
$loaditems,$crumb); |
$loaditems,$crumb,'','','','',$showcredits); |
} |
} |
} elsif ($action eq 'display') { |
} elsif ($action eq 'display') { |
if ($warning ne '') { |
if ($warning ne '') { |
Line 331 sub handler {
|
Line 335 sub handler {
|
&close_popup_form()); |
&close_popup_form()); |
} else { |
} else { |
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
&request_administration($r,$action,$state,$page,\%states,$dom,$jscript, |
$loaditems,$crumb,'','','','','',$uname,$udom); |
$loaditems,$crumb,'','','','',$showcredits,'','', |
|
$uname,$udom); |
} |
} |
} elsif ($action eq 'log') { |
} elsif ($action eq 'log') { |
if ($state eq 'crstype') { |
if ($state eq 'crstype') { |
Line 495 sub header {
|
Line 500 sub header {
|
} |
} |
|
|
sub form_elements { |
sub form_elements { |
my ($dom) = @_; |
my ($dom,$showcredits) = @_; |
|
my $instcredits; |
my %elements = |
my %elements = |
( |
( |
new => { |
new => { |
Line 603 sub form_elements {
|
Line 609 sub form_elements {
|
$extras{'loncapasec_'.$i} = 'text', |
$extras{'loncapasec_'.$i} = 'text', |
} |
} |
} |
} |
|
(my $outcome,my $desc,$instcredits) = |
|
&Apache::lonnet::auto_validate_instcode(undef,$dom,$instcode); |
|
if ($showcredits && $instcredits eq '') { |
|
$extras{'coursecredits'} = 'text'; |
|
} |
|
} elsif ($env{'form.crstype'} eq 'unofficial') { |
|
if ($showcredits) { |
|
$extras{'coursecredits'} = 'text'; |
|
} |
} |
} |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
if ($env{'form.addcrosslist'}) { |
if ($env{'form.addcrosslist'}) { |
Line 648 sub form_elements {
|
Line 663 sub form_elements {
|
} |
} |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
return %elements; |
return (\%elements,$instcredits);; |
} |
} |
|
|
sub onload_action { |
sub onload_action { |
Line 854 END
|
Line 869 END
|
|
|
sub request_administration { |
sub request_administration { |
my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb, |
my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb, |
$newinstcode,$codechk,$checkedcode,$description,$invalidcrosslist, |
$newinstcode,$codechk,$checkedcode,$description,$showcredits, |
$uname,$udom) = @_; |
$instcredits,$invalidcrosslist,$uname,$udom) = @_; |
my $js; |
my $js; |
if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) { |
if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) { |
$js = <<END; |
$js = <<END; |
Line 897 END
|
Line 912 END
|
} |
} |
$r->print(&header($title,$js.$jscript,$loaditems,$jsextra).$crumb); |
$r->print(&header($title,$js.$jscript,$loaditems,$jsextra).$crumb); |
&print_request_form($r,$action,$state,$page,$states,$dom,$newinstcode, |
&print_request_form($r,$action,$state,$page,$states,$dom,$newinstcode, |
$codechk,$checkedcode,$description,$invalidcrosslist); |
$codechk,$checkedcode,$description,$showcredits, |
|
$instcredits,$invalidcrosslist); |
} elsif ($action eq 'view') { |
} elsif ($action eq 'view') { |
my $jsextra; |
my $jsextra; |
my $formname = 'requestcrs'; |
my $formname = 'requestcrs'; |
Line 951 END
|
Line 967 END
|
} |
} |
$r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n". |
$r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n". |
&print_review($dom,\@codetitles,\%cat_titles,\%cat_order, |
&print_review($dom,\@codetitles,\%cat_titles,\%cat_order, |
\@code_order)."\n". |
\@code_order,'','','','',$instcredits)."\n". |
'<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n"); |
'<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n"); |
my @excluded = &get_excluded_elements($dom,$states,'new','review'); |
my @excluded = &get_excluded_elements($dom,$states,'new','review', |
|
$showcredits); |
push(@excluded,'origcnum'); |
push(@excluded,'origcnum'); |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
my $other = 'modify'; |
my $other = 'modify'; |
Line 975 END
|
Line 992 END
|
my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'}); |
my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'}); |
$r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n". |
$r->print('<h3>'.$title.'</h3><div>'."\n".$form."\n". |
$output); |
$output); |
my @excluded = &get_excluded_elements($dom,$states,'view','cancel'); |
my @excluded = &get_excluded_elements($dom,$states,'view','cancel', |
|
$showcredits); |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
my %navtxt = &Apache::lonlocal::texthash ( |
my %navtxt = &Apache::lonlocal::texthash ( |
prev => 'Back', |
prev => 'Back', |
Line 1052 END
|
Line 1070 END
|
$r->print(&header($title,'','','',{ 'only_body' => 1}). |
$r->print(&header($title,'','','',{ 'only_body' => 1}). |
$crumb."\n".'<h3>'.$header.'</h3>'. |
$crumb."\n".'<h3>'.$header.'</h3>'. |
&print_review($dom,\@codetitles,\%cat_titles,\%cat_order, |
&print_review($dom,\@codetitles,\%cat_titles,\%cat_order, |
\@code_order,$uname,$udom)."\n".'</div>'. |
\@code_order,$uname,$udom,'','',$instcredits)."\n". |
|
'</div>'. |
&close_popup_form()); |
&close_popup_form()); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
Line 1246 sub get_instcode {
|
Line 1265 sub get_instcode {
|
|
|
sub print_request_form { |
sub print_request_form { |
my ($r,$action,$state,$page,$states,$dom,$newinstcode,$codechk,$checkedcode, |
my ($r,$action,$state,$page,$states,$dom,$newinstcode,$codechk,$checkedcode, |
$description,$invalidcrosslist) = @_; |
$description,$showcredits,$instcredits,$invalidcrosslist) = @_; |
my $formname = 'requestcrs'; |
my $formname = 'requestcrs'; |
my ($next,$prev,$message,$output,$codepicker,$crstype); |
my ($next,$prev,$message,$output,$codepicker,$crstype); |
$prev = $states->{$action}[$page-1]; |
$prev = $states->{$action}[$page-1]; |
Line 1319 sub print_request_form {
|
Line 1338 sub print_request_form {
|
} |
} |
$r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles, |
$r->print(&print_enrollment_menu($formname,$instcode,$dom,\@codetitles, |
\%cat_titles,\%cat_order,\@code_order, |
\%cat_titles,\%cat_order,\@code_order, |
$invalidcrosslist)); |
$showcredits,$instcredits,$invalidcrosslist)); |
} elsif ($state eq 'personnel') { |
} elsif ($state eq 'personnel') { |
$r->print(&print_personnel_menu($dom,$formname,$crstype,$invalidcrosslist)); |
$r->print(&print_personnel_menu($dom,$formname,$crstype,$invalidcrosslist)); |
} elsif ($state eq 'review') { |
} elsif ($state eq 'review') { |
Line 1435 sub print_request_form {
|
Line 1454 sub print_request_form {
|
} else { |
} else { |
$r->print('<h3>'.&mt('Review course request details before submission').'</h3>'); |
$r->print('<h3>'.&mt('Review course request details before submission').'</h3>'); |
} |
} |
$r->print(&print_review($dom,\@codetitles,\%cat_titles,\%cat_order,\@code_order,'','',\@disallowed,\%disallowmsg). |
$r->print(&print_review($dom,\@codetitles,\%cat_titles,\%cat_order,\@code_order,'','',\@disallowed,\%disallowmsg,$instcredits). |
'<input type="hidden" name="cnum" value="'.$cnum.'" />'); |
'<input type="hidden" name="cnum" value="'.$cnum.'" />'); |
if ($crstype eq 'community') { |
if ($crstype eq 'community') { |
$navtxt{'next'} = &mt('Submit community request'); |
$navtxt{'next'} = &mt('Submit community request'); |
Line 1448 sub print_request_form {
|
Line 1467 sub print_request_form {
|
\%cat_order,\@code_order); |
\%cat_order,\@code_order); |
} |
} |
my ($storeresult,$result) = &print_request_outcome($dom,\@codetitles, |
my ($storeresult,$result) = &print_request_outcome($dom,\@codetitles, |
\@code_order); |
\@code_order,$instcredits); |
$r->print($result); |
$r->print($result); |
if (($storeresult eq 'ok') || ($storeresult eq 'created')) { |
if (($storeresult eq 'ok') || ($storeresult eq 'created')) { |
if ($storeresult eq 'ok') { |
if ($storeresult eq 'ok') { |
Line 1518 sub print_request_form {
|
Line 1537 sub print_request_form {
|
$r->print('<p>'.$links[0].'</p>'); |
$r->print('<p>'.$links[0].'</p>'); |
} |
} |
} |
} |
my @excluded = &get_excluded_elements($dom,$states,$action,$state); |
my @excluded = &get_excluded_elements($dom,$states,$action,$state,$showcredits); |
if ($state eq 'personnel') { |
if ($state eq 'personnel') { |
push(@excluded,'persontotal'); |
push(@excluded,'persontotal'); |
} |
} |
Line 1615 sub check_newuser_rules {
|
Line 1634 sub check_newuser_rules {
|
} |
} |
|
|
sub get_excluded_elements { |
sub get_excluded_elements { |
my ($dom,$states,$action,$state) = @_; |
my ($dom,$states,$action,$state,$showcredits) = @_; |
my @excluded = ('counter'); |
my @excluded = ('counter'); |
my %elements = &form_elements($dom); |
my ($elements,$instcredits) = &form_elements($dom,$showcredits); |
if (ref($states) eq 'HASH') { |
if (ref($states) eq 'HASH') { |
if (ref($states->{$action}) eq 'ARRAY') { |
if (ref($states->{$action}) eq 'ARRAY') { |
my @items = @{$states->{$action}}; |
my @items = @{$states->{$action}}; |
my $numitems = scalar(@items); |
my $numitems = scalar(@items); |
if ($numitems) { |
if ($numitems) { |
for (my $i=$numitems-1; $i>=0; $i--) { |
for (my $i=$numitems-1; $i>=0; $i--) { |
if (ref($elements{$action}) eq 'HASH') { |
if ((ref($elements) eq 'HASH') && |
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
(ref($elements->{$action}) eq 'HASH')) { |
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
if (ref($elements->{$action}{$items[$i]}) eq 'HASH') { |
|
foreach my $key (keys(%{$elements->{$action}{$items[$i]}})) { |
push(@excluded,$key); |
push(@excluded,$key); |
} |
} |
} |
} |
Line 1644 sub get_excluded_elements {
|
Line 1664 sub get_excluded_elements {
|
|
|
sub print_enrollment_menu { |
sub print_enrollment_menu { |
my ($formname,$instcode,$dom,$codetitles,$cat_titles,$cat_order,$code_order, |
my ($formname,$instcode,$dom,$codetitles,$cat_titles,$cat_order,$code_order, |
$invalidcrosslist) =@_; |
$showcredits,$instcredits,$invalidcrosslist) =@_; |
my ($sections,$autoenroll,$access_dates,$output,$hasauto); |
my ($sections,$autoenroll,$access_dates,$output,$hasauto,$hascredits, |
|
$creditsrow,$domdefcredits); |
my $starttime = time; |
my $starttime = time; |
my $endtime = time+(6*30*24*60*60); # 6 months from now, approx |
my $endtime = time+(6*30*24*60*60); # 6 months from now, approx |
|
|
Line 1657 sub print_enrollment_menu {
|
Line 1678 sub print_enrollment_menu {
|
'start' => 'Start auto-enrollment', |
'start' => 'Start auto-enrollment', |
'end' => 'End auto-enrollment', |
'end' => 'End auto-enrollment', |
); |
); |
|
if ($showcredits) { |
|
unless ($env{'form.crstype'} eq 'community') { |
|
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
$domdefcredits = $domdefs{$env{'form.crstype'}.'credits'}; |
|
} |
|
} |
if ($env{'form.crstype'} eq 'official') { |
if ($env{'form.crstype'} eq 'official') { |
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
$output = &show_invalid_crosslists($invalidcrosslist); |
$output = &show_invalid_crosslists($invalidcrosslist); |
Line 1731 sub print_enrollment_menu {
|
Line 1758 sub print_enrollment_menu {
|
&mt('No').'</label></span>'. |
&mt('No').'</label></span>'. |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
&date_setting_table($starttime,$endtime,$formname,'enroll', |
&date_setting_table($starttime,$endtime,$formname,'enroll', |
$hasauto,%enrolltitles); |
$hasauto,undef,%enrolltitles); |
|
if ($showcredits) { |
|
if ($instcredits) { |
|
$creditsrow = &mt('[quant,_1,credit]',$instcredits); |
|
} else { |
|
$creditsrow = '<span class="LC_nobreak">'. |
|
'<input type="text" size="3" name="coursecredits"'. |
|
' value="'.$domdefcredits.'" />'; |
|
} |
|
$hascredits = 1; |
|
} |
|
} |
|
} elsif ($env{'form.crstype'} eq 'unofficial') { |
|
if ($showcredits) { |
|
$creditsrow = '<span class="LC_nobreak">'. |
|
'<input type="text" size="3" name="coursecredits"'. |
|
' value="'.$domdefcredits.'"/>'; |
|
$hascredits = 1; |
} |
} |
} |
} |
my $access_dates = |
my $access_dates = |
&date_setting_table($starttime,$endtime,$formname,'access',$hasauto, |
&date_setting_table($starttime,$endtime,$formname,'access',$hasauto, |
%accesstitles); |
$hascredits,%accesstitles); |
$output .= &Apache::lonhtmlcommon::start_pick_box(); |
$output .= &Apache::lonhtmlcommon::start_pick_box(); |
if ($sections) { |
if ($sections) { |
$output .= $sections; |
$output .= $sections; |
Line 1755 sub print_enrollment_menu {
|
Line 1799 sub print_enrollment_menu {
|
$output .= &Apache::lonhtmlcommon::row_headline('Access'). |
$output .= &Apache::lonhtmlcommon::row_headline('Access'). |
'<h3>'.$header.'</h3>'. |
'<h3>'.$header.'</h3>'. |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
$access_dates |
$access_dates; |
|
} |
|
if ($creditsrow) { |
|
$output .= &Apache::lonhtmlcommon::row_headline('Credits'). |
|
'<h3>'.&mt('Credits earned by students').'</h3>'. |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::row_title(&mt('Default credits')). |
|
$creditsrow. |
|
&Apache::lonhtmlcommon::row_closure(1); |
} |
} |
return '<div>'.&Apache::lonhtmlcommon::start_pick_box().$output. |
return '<div>'.&Apache::lonhtmlcommon::start_pick_box().$output. |
&Apache::lonhtmlcommon::end_pick_box().'</div>'; |
&Apache::lonhtmlcommon::end_pick_box().'</div>'; |
Line 1820 sub inst_section_selector {
|
Line 1872 sub inst_section_selector {
|
} |
} |
|
|
sub date_setting_table { |
sub date_setting_table { |
my ($starttime,$endtime,$formname,$prefix,$hasauto,%datetitles) = @_; |
my ($starttime,$endtime,$formname,$prefix,$hasauto,$hascredits,%datetitles)=@_; |
my ($perpetual,$table); |
my ($perpetual,$table); |
my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start', |
my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start', |
$starttime,'','','',1,'','','',1); |
$starttime,'','','',1,'','','',1); |
Line 1831 sub date_setting_table {
|
Line 1883 sub date_setting_table {
|
$perpetual = ' <span class="LC_nobreak"><label>'. |
$perpetual = ' <span class="LC_nobreak"><label>'. |
'<input type="checkbox" name="no_end_date" />'. |
'<input type="checkbox" name="no_end_date" />'. |
&mt('No end date').'</label></span>'; |
&mt('No end date').'</label></span>'; |
$closure = '1'; |
unless ($hascredits) { |
|
$closure = '1'; |
|
} |
} |
} |
|
|
my %help_item = ( |
my %help_item = ( |
Line 2553 sub requestlog_display_filter {
|
Line 2607 sub requestlog_display_filter {
|
|
|
sub print_review { |
sub print_review { |
my ($dom,$codetitles,$cat_titles,$cat_order,$code_order,$uname,$udom, |
my ($dom,$codetitles,$cat_titles,$cat_order,$code_order,$uname,$udom, |
$disallowed,$disallowmsg) = @_; |
$disallowed,$disallowmsg,$instcredits) = @_; |
my ($types,$typename) = &Apache::loncommon::course_types(); |
my ($types,$typename) = &Apache::loncommon::course_types(); |
my ($owner,$ownername,$owneremail); |
my ($owner,$ownername,$owneremail); |
if ($uname eq '' || $udom eq '') { |
if ($uname eq '' || $udom eq '') { |
Line 2601 sub print_review {
|
Line 2655 sub print_review {
|
} |
} |
} |
} |
} |
} |
|
$inst_headers .= '<th>'.&mt('Credits').'</th>'; |
|
if ($instcredits) { |
|
$inst_values .= '<td>'.$instcredits.'</td>'; |
|
} else { |
|
$inst_values .= '<td>'.$env{'form.coursecredits'}.'</td>'; |
|
} |
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
$enrollrow_title = &mt('Enrollment'); |
$enrollrow_title = &mt('Enrollment'); |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
Line 2670 sub print_review {
|
Line 2730 sub print_review {
|
$section_values .= $xlistinfo; |
$section_values .= $xlistinfo; |
} |
} |
$section_values .= '</table></td>'; |
$section_values .= '</table></td>'; |
|
} elsif ($env{'form.crstype'} eq 'unofficial') { |
|
$inst_headers .= '<th>'.&mt('Credits').'</th>'; |
|
$inst_values .= '<td>'.$env{'form.coursecredits'}.'</td>'; |
} |
} |
|
|
my %ctxt = &clone_text(); |
my %ctxt = &clone_text(); |
Line 3165 sub display_navbuttons {
|
Line 3228 sub display_navbuttons {
|
} |
} |
|
|
sub print_request_outcome { |
sub print_request_outcome { |
my ($dom,$codetitles,$code_order) = @_; |
my ($dom,$codetitles,$code_order,$instcredits) = @_; |
my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend, |
my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend, |
%sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig,); |
%sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig); |
my $sectotal = $env{'form.sectotal'}; |
my $sectotal = $env{'form.sectotal'}; |
my $crosslisttotal = 0; |
my $crosslisttotal = 0; |
$cnum = $env{'form.cnum'}; |
$cnum = $env{'form.cnum'}; |
Line 3356 sub print_request_outcome {
|
Line 3419 sub print_request_outcome {
|
if (exists($env{'form.instcode'})) { |
if (exists($env{'form.instcode'})) { |
$instcode = $env{'form.instcode'}; |
$instcode = $env{'form.instcode'}; |
} |
} |
|
my $credits; |
|
if ($instcredits) { |
|
$credits = $instcredits; |
|
} elsif (exists($env{'form.coursecredits'})) { |
|
$credits = $env{'form.coursecredits'}; |
|
} |
my $clonecrs = ''; |
my $clonecrs = ''; |
my $clonedom = ''; |
my $clonedom = ''; |
if (($env{'form.cloning'}) && |
if (($env{'form.cloning'}) && |
Line 3383 sub print_request_outcome {
|
Line 3452 sub print_request_outcome {
|
cdescr => $env{'form.cdescr'}, |
cdescr => $env{'form.cdescr'}, |
crstype => $env{'form.crstype'}, |
crstype => $env{'form.crstype'}, |
instcode => $instcode, |
instcode => $instcode, |
|
defaultcredits => $credits, |
clonedom => $clonedom, |
clonedom => $clonedom, |
clonecrs => $clonecrs, |
clonecrs => $clonecrs, |
datemode => $env{'form.datemode'}, |
datemode => $env{'form.datemode'}, |
Line 3829 sub retrieve_settings {
|
Line 3899 sub retrieve_settings {
|
$cnum => $reqinfo{'instcode'}, |
$cnum => $reqinfo{'instcode'}, |
}; |
}; |
&extract_instcode($dom,'instcode',$crscode,$cnum); |
&extract_instcode($dom,'instcode',$crscode,$cnum); |
|
(undef,undef,my $instcredits) = |
|
&Apache::lonnet::auto_validate_instcode(undef,$dom, |
|
$reqinfo{'instcode'}); |
|
if ($instcredits ne $reqinfo{'defaultcredits'}) { |
|
$env{'form.coursecredits'} = $reqinfo{'defaultcredits'}; |
|
} |
} |
} |
|
} elsif ($reqinfo{'crstype'} eq 'unofficial') { |
|
$env{'form.coursecredits'} = $reqinfo{'defaultcredits'}; |
} |
} |
my @currsec; |
my @currsec; |
if (ref($reqinfo{'sections'}) eq 'HASH') { |
if (ref($reqinfo{'sections'}) eq 'HASH') { |