version 1.13, 2009/08/15 01:59:04
|
version 1.16, 2009/08/18 01:41:37
|
Line 128 sub handler {
|
Line 128 sub handler {
|
my $dom = &get_course_dom(); |
my $dom = &get_course_dom(); |
my $action = $env{'form.action'}; |
my $action = $env{'form.action'}; |
my $state = $env{'form.state'}; |
my $state = $env{'form.state'}; |
|
|
my %stored; |
my %stored; |
my $jscript; |
my $jscript; |
if ((defined($state)) && (defined($action))) { |
if ((defined($state)) && (defined($action))) { |
my %elements = &form_elements($dom); |
if (($action eq 'view') && ($state eq 'details')) { |
if (($action eq 'view') && ($state ne 'crstype')) { |
if ((defined($env{'form.showdom'})) && (defined($env{'form.cnum'}))) { |
if (defined($env{'form.request_id'})) { |
my $result = &retrieve_settings($env{'form.showdom'},$env{'form.cnum'}); |
%stored = &retrieve_settings($dom,$env{'form.request_id'}); |
|
} |
} |
} |
} |
|
my %elements = &form_elements($dom); |
my $elementsref = {}; |
my $elementsref = {}; |
if (ref($elements{$action}) eq 'HASH') { |
if (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 '')) { |
|
$env{'form.clonedom'} = $dom; |
|
} |
$jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored); |
$jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored); |
} |
} |
|
|
Line 154 sub handler {
|
Line 156 sub handler {
|
my $loaditems = &onload_action($action,$state); |
my $loaditems = &onload_action($action,$state); |
|
|
my %states; |
my %states; |
$states{'view'} = ['pick_request','details','review','process']; |
$states{'view'} = ['pick_request','details','cancel','removal']; |
$states{'log'} = ['filter','display']; |
$states{'log'} = ['filter','display']; |
$states{'new'} = ['courseinfo','enrollment','personnel','review','process']; |
$states{'new'} = ['courseinfo','enrollment','personnel','review','process']; |
if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) { |
if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) { |
Line 173 sub handler {
|
Line 175 sub handler {
|
crstype => 'Course Request Action', |
crstype => 'Course Request Action', |
codepick => 'Category', |
codepick => 'Category', |
courseinfo => 'Description', |
courseinfo => 'Description', |
enrollment => 'Enrollment', |
enrollment => 'Access Dates', |
personnel => 'Personnel', |
personnel => 'Personnel', |
review => 'Review', |
review => 'Review', |
process => 'Result', |
process => 'Result', |
pick_request => 'Display Summary', |
pick_request => 'Display Summary', |
|
details => 'Request Details', |
|
cancel => 'Cancel Request', |
|
removal => 'Outcome', |
); |
); |
|
|
|
if (($env{'form.crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
|
$trail{'enrollment'} = 'Enrollment'; |
|
} |
|
|
my $page = 0; |
my $page = 0; |
my $crumb; |
my $crumb; |
if (defined($action)) { |
if (defined($action)) { |
Line 273 sub form_elements {
|
Line 282 sub form_elements {
|
crstype => { |
crstype => { |
crstype => 'selectbox', |
crstype => 'selectbox', |
action => 'selectbox', |
action => 'selectbox', |
|
origcnum => 'hidden', |
}, |
}, |
courseinfo => { |
courseinfo => { |
cdescr => 'text', |
cdescr => 'text', |
Line 297 sub form_elements {
|
Line 307 sub form_elements {
|
no_end_date => 'checkbox', |
no_end_date => 'checkbox', |
}, |
}, |
personnel => { |
personnel => { |
persontotal => 'hidden', |
|
addperson => 'checkbox', |
addperson => 'checkbox', |
}, |
}, |
review => { |
review => { |
Line 359 sub form_elements {
|
Line 368 sub form_elements {
|
} |
} |
} |
} |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
my $crosslisttotal = $env{'form.crosslisttotal'}; |
|
if ($env{'form.addcrosslist'}) { |
|
$crosslisttotal ++; |
|
} |
if (!defined($crosslisttotal)) { |
if (!defined($crosslisttotal)) { |
$crosslisttotal = 1; |
$crosslisttotal = 1; |
} |
} |
Line 382 sub form_elements {
|
Line 394 sub form_elements {
|
} |
} |
my %people; |
my %people; |
my $persontotal = $env{'form.persontotal'}; |
my $persontotal = $env{'form.persontotal'}; |
if (!defined($persontotal)) { |
if ($env{'form.addperson'}) { |
|
$persontotal ++; |
|
} |
|
if ((!defined($persontotal)) || (!$persontotal)) { |
$persontotal = 1; |
$persontotal = 1; |
} |
} |
for (my $i=0; $i<$persontotal; $i++) { |
for (my $i=0; $i<$persontotal; $i++) { |
Line 395 sub form_elements {
|
Line 410 sub form_elements {
|
$people{'person_'.$i.'_role'} = 'selectbox', |
$people{'person_'.$i.'_role'} = 'selectbox', |
$people{'person_'.$i.'_sec'} = 'selectbox', |
$people{'person_'.$i.'_sec'} = 'selectbox', |
$people{'person_'.$i.'_newsec'} = 'text', |
$people{'person_'.$i.'_newsec'} = 'text', |
$people{'person_'.$i.'_sections'} = 'hidden', |
|
} |
} |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
my %personnelhash = (%{$elements{'new'}{'personnel'}},%people); |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
%{$elements{'new'}{'personnel'}} = %personnelhash; |
Line 553 END
|
Line 567 END
|
|
|
my $formname = 'requestcrs'; |
my $formname = 'requestcrs'; |
my $nexttext = &mt('Next'); |
my $nexttext = &mt('Next'); |
$r->print('<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'. |
$r->print( |
|
'<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'. |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title('Action').' |
&Apache::lonhtmlcommon::row_title('Action').' |
<input type="hidden" name="showdom" value="'.$dom.'" /> |
<input type="hidden" name="showdom" value="'.$dom.'" /> |
Line 589 END
|
Line 604 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) = @_; |
my $js; |
my $js; |
if (($action eq 'new') || ($action eq 'view')) { |
if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) { |
$js = <<END; |
$js = <<END; |
|
|
function nextPage(formname,nextstate) { |
function nextPage(formname,nextstate) { |
formname.state.value= nextstate; |
formname.state.value= nextstate; |
formname.submit(); |
formname.submit(); |
} |
} |
|
|
|
END |
|
} |
|
if (($action eq 'new') || ($action eq 'view')) { |
|
$js .= <<END; |
|
|
function backPage(formname,prevstate) { |
function backPage(formname,prevstate) { |
formname.state.value = prevstate; |
formname.state.value = prevstate; |
formname.submit(); |
formname.submit(); |
Line 611 END
|
Line 632 END
|
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
$r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb); |
&print_request_form($r,$action,$state,$page,$states,$dom); |
&print_request_form($r,$action,$state,$page,$states,$dom); |
} elsif ($action eq 'view') { |
} elsif ($action eq 'view') { |
$r->print(&header('Manage course requests',$js.$jscript,$loaditems).$crumb); |
my $jsextra; |
|
my $formname = 'requestcrs'; |
|
my $prev = $states->{$action}[$page-1]; |
|
my $next = $states->{$action}[$page+1]; |
|
if ($state eq 'pick_request') { |
|
$next = $states->{$action}[$page+1]; |
|
$jsextra = &viewrequest_javascript($formname,$next); |
|
} elsif ($state eq 'details') { |
|
$jsextra = &viewdetails_javascript($formname); |
|
|
|
} elsif ($state eq 'cancel') { |
|
$jsextra = &viewcancel_javascript($formname); |
|
} |
|
$r->print(&header('Manage course requests',$js.$jscript.$jsextra,$loaditems). |
|
$crumb); |
|
my $form = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'; |
if ($state eq 'pick_request') { |
if ($state eq 'pick_request') { |
$r->print(&print_request_status($dom)); |
$r->print('<h3>'.&mt('Pending course requests').'</h3><div>'."\n".$form."\n". |
|
&print_request_status($dom).'</form>'); |
|
} elsif ($state eq 'details') { |
|
my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk); |
|
my $origcnum = $env{'form.cnum'}; |
|
if ($origcnum eq '') { |
|
$origcnum = $env{'form.origcnum'}; |
|
} |
|
if ($env{'form.crstype'} eq 'official') { |
|
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
|
\%cat_order,\@code_order); |
|
} |
|
$r->print('<h3>'.&mt('Course Request Details').'</h3><div>'."\n".$form."\n". |
|
&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
|
\@code_order)."\n". |
|
'<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n"); |
|
my @excluded = &get_excluded_elements($dom,$states,'new','review'); |
|
push(@excluded,'origcnum'); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
|
my $other = 'modify'; |
|
my %navtxt = &Apache::lonlocal::texthash ( |
|
prev => 'Back', |
|
other => 'Modify Request', |
|
next => 'Cancel Request', |
|
); |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'}, |
|
$state,$other,$navtxt{'other'}); |
|
$r->print('</form>'); |
|
} elsif ($state eq 'cancel') { |
|
my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'}); |
|
$r->print('<h3>'.&mt('Cancel course request').'</h3><div>'."\n".$form."\n". |
|
$output); |
|
my @excluded = &get_excluded_elements($dom,$states,'view','cancel'); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>'); |
|
my %navtxt = &Apache::lonlocal::texthash ( |
|
prev => 'Back', |
|
next => 'Confirm Cancellation', |
|
); |
|
if ($result eq 'ok') { |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next, |
|
$navtxt{'next'},$state); |
|
} else { |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},undef,'',$state); |
|
} |
|
$r->print('</form>'); |
|
} elsif ($state eq 'removal') { |
|
my $cnum = $env{'form.origcnum'}; |
|
my $statuskey = 'status:'.$dom.':'.$cnum; |
|
my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey], |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $currstatus = $userreqhash{$statuskey}; |
|
my ($result,$error); |
|
if (($currstatus eq 'approval') || ($currstatus eq 'pending')) { |
|
my %status = ( |
|
$statuskey => 'cancelled', |
|
); |
|
my $statusresult = &Apache::lonnet::put('courserequests',\%status); |
|
if ($statusresult eq 'ok') { |
|
my $delresult = |
|
&Apache::lonnet::del_dom('courserequestqueue', |
|
[$cnum.'_'.$currstatus],$dom); |
|
if ($delresult eq 'ok') { |
|
$result = 'ok'; |
|
} else { |
|
$error = &mt('An error occurred when updating the pending requests queue: [_1]',$delresult); |
|
} |
|
} else { |
|
$error = &mt("An error occurred when updating the status of this request in the requestor's records: [_1]",$statusresult); |
|
} |
|
} else { |
|
$error = &mt('The current status of this request could not be verified as pending approval/institutional action.'); |
|
} |
|
$r->print('<h3>'.&mt('Request Cancellation').'</h3><div>'."\n".$form."\n". |
|
'<input type="hidden" name="state" value="'.$state.'" />'."\n". |
|
'<input type="hidden" name="action" value="'.$action.'" />'."\n". |
|
'<input type="hidden" name="showdom" value="'.$dom.'" />'."\n". |
|
'<input type="hidden" name="orignum" value="'.$cnum.'" />'."\n"); |
|
if ($result eq 'ok') { |
|
$r->print(&mt('Your course request has been cancelled.')); |
|
} else { |
|
$r->print('<div class="LC_error">'. |
|
&mt('The request cancellation process was not complete.'). |
|
'<br />'.$error.'</div>'); |
|
} |
|
$r->print('</form>'); |
} |
} |
} elsif ($action eq 'log') { |
} elsif ($action eq 'log') { |
$r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb); |
$r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb); |
Line 689 sub print_request_form {
|
Line 809 sub print_request_form {
|
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker. |
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker. |
&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
} else { |
} else { |
$r->print(&courseinfo_form($dom,$formname,$crstype)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} |
} |
} else { |
} else { |
$r->print(&courseinfo_form($dom,$formname,$crstype)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} |
} |
} elsif ($prev eq 'codepick') { |
} elsif ($prev eq 'codepick') { |
$r->print(&courseinfo_form($dom,$formname,$crstype)); |
$r->print(&courseinfo_form($dom,$formname,$crstype,$next)); |
} elsif ($state eq 'enrollment') { |
} elsif ($state eq 'enrollment') { |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
Line 706 sub print_request_form {
|
Line 826 sub print_request_form {
|
} elsif ($state eq 'personnel') { |
} elsif ($state eq 'personnel') { |
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
$r->print(&print_personnel_menu($dom,$formname,$crstype)); |
} elsif ($state eq 'review') { |
} elsif ($state eq 'review') { |
|
my $cnum; |
|
if ($env{'form.origcnum'} =~ /^($match_courseid)$/) { |
|
$cnum = $env{'form.origcnum'}; |
|
} else { |
|
$cnum = &Apache::lonnet::generate_coursenum($dom); |
|
} |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
&Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles, |
\%cat_order,\@code_order); |
\%cat_order,\@code_order); |
$r->print(&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
$r->print('<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
\@code_order)); |
&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order, |
|
\@code_order). |
|
'<input type="hidden" name="cnum" value="'.$cnum.'" />'); |
$navtxt{'next'} = &mt('Submit course request'); |
$navtxt{'next'} = &mt('Submit course request'); |
} elsif ($state eq 'process') { |
} elsif ($state eq 'process') { |
if ($crstype eq 'official') { |
if ($crstype eq 'official') { |
Line 719 sub print_request_form {
|
Line 847 sub print_request_form {
|
my $result = &print_request_outcome($dom,\@codetitles,\@code_order); |
my $result = &print_request_outcome($dom,\@codetitles,\@code_order); |
$r->print($result); |
$r->print($result); |
} |
} |
|
my @excluded = &get_excluded_elements($dom,$states,$action,$state); |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>'); |
|
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},$state); |
|
return; |
|
} |
|
|
|
sub get_excluded_elements { |
|
my ($dom,$states,$action,$state) = @_; |
my @excluded = ('counter'); |
my @excluded = ('counter'); |
my %elements = &form_elements($dom); |
my %elements = &form_elements($dom); |
if (ref($states) eq 'HASH') { |
if (ref($states) eq 'HASH') { |
Line 729 sub print_request_form {
|
Line 865 sub print_request_form {
|
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{$action}) eq 'HASH') { |
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
if (ref($elements{$action}{$items[$i]}) eq 'HASH') { |
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
foreach my $key (keys(%{$elements{$action}{$items[$i]}})) { |
push(@excluded,$key); |
push(@excluded,$key); |
} |
} |
} |
} |
Line 742 sub print_request_form {
|
Line 878 sub print_request_form {
|
if (grep(/^instcode_/,@excluded)) { |
if (grep(/^instcode_/,@excluded)) { |
push(@excluded,'instcode'); |
push(@excluded,'instcode'); |
} |
} |
$r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>'); |
return @excluded; |
&display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'}); |
|
return; |
|
} |
} |
|
|
sub print_enrollment_menu { |
sub print_enrollment_menu { |
Line 755 sub print_enrollment_menu {
|
Line 889 sub print_enrollment_menu {
|
|
|
my %accesstitles = ( |
my %accesstitles = ( |
'start' => 'Default start access', |
'start' => 'Default start access', |
'end' => 'Default end accss', |
'end' => 'Default end access', |
); |
); |
my %enrolltitles = ( |
my %enrolltitles = ( |
'start' => 'Start auto-enrollment', |
'start' => 'Start auto-enrollment', |
Line 855 sub inst_section_selector {
|
Line 989 sub inst_section_selector {
|
} |
} |
|
|
sub date_setting_table { |
sub date_setting_table { |
my ($starttime,$endtime,$formname,$suffix,%datetitles) = @_; |
my ($starttime,$endtime,$formname,$prefix,%datetitles) = @_; |
my ($perpetual,$table); |
my ($perpetual,$table); |
my $startform = &Apache::lonhtmlcommon::date_setter($formname,'start'.$suffix, |
my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start', |
$starttime,'','','',1,'','','',1); |
$starttime,'','','',1,'','','',1); |
my $endform = &Apache::lonhtmlcommon::date_setter($formname,'end'.$suffix, |
my $endform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'end', |
$endtime,'','','',1,'','','',1); |
$endtime,'','','',1,'','','',1); |
if ($suffix eq 'access') { |
if ($prefix eq 'access') { |
$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>'; |
Line 879 sub print_personnel_menu {
|
Line 1013 sub print_personnel_menu {
|
my ($dom,$formname,$crstype) = @_; |
my ($dom,$formname,$crstype) = @_; |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(); |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(); |
my $persontotal = $env{'form.persontotal'}; |
my $persontotal = $env{'form.persontotal'}; |
if (!defined($persontotal)) { |
if ((!defined($persontotal)) || (!$persontotal)) { |
$persontotal = 1; |
$persontotal = 1; |
} |
} |
if ($env{'form.addperson'}) { |
if ($env{'form.addperson'}) { |
Line 965 sub print_personnel_menu {
|
Line 1099 sub print_personnel_menu {
|
$existmult.'>'."\n".$existops.'</select>'.(' ' x3); |
$existmult.'>'."\n".$existops.'</select>'.(' ' x3); |
} |
} |
$sectionselector .= $newtitle. |
$sectionselector .= $newtitle. |
'<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'. |
'<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'."\n"; |
'<input type="hidden" name="person_'.$i.'_sections" value="" />'."\n"; |
|
|
|
$output .= |
$output .= |
&Apache::lonhtmlcommon::row_title(&mt('Additional Personnel').'<br />'. |
&Apache::lonhtmlcommon::row_title(&mt('Additional Personnel').'<br />'. |
'<span class="LC_nobreak">'.$userlink. |
'<span class="LC_nobreak">'.$userlink. |
Line 992 sub print_personnel_menu {
|
Line 1124 sub print_personnel_menu {
|
|
|
sub print_request_status { |
sub print_request_status { |
my ($dom) = @_; |
my ($dom) = @_; |
my %requests = &Apache::lonnet::dumpstore('courserequests',$env{'user.domain'}, |
my %statusinfo = &Apache::lonnet::dump('courserequests',$env{'user.domain'}, |
$env{'user.name'}); |
$env{'user.name'},'^status:'.$dom); |
my ($output,$formname,%queue_by_date); |
my ($output,$formname,%queue_by_date,%typenames); |
foreach my $key (keys(%requests)) { |
if ($env{'form.crstype'} eq 'any') { |
if (ref($requests{$key}) eq 'HASH') { |
%typenames = &Apache::lonlocal::texthash ( |
my ($cdom,$cnum) = split('_',$key); |
official => 'Official course', |
next if ($cdom ne $dom); |
unofficial => 'Unofficial course', |
my $entry; |
community => 'Community', |
my $timestamp = $requests{$key}{'timestamp'}; |
); |
my $crstype = $requests{$key}{'crstype'}; |
} |
my $status = $requests{$key}{'status'}; |
foreach my $key (keys(%statusinfo)) { |
next unless (($env{'form.crstype'} eq 'all') || |
if (($statusinfo{$key} eq 'approval') || ($statusinfo{$key} eq 'pending')) { |
($env{'form.crstype'} eq $crstype)); |
(undef,my($cdom,$cnum)) = split(':',$key); |
next unless (($status eq 'approval') || ($status eq 'pending')); |
next if ($cdom ne $dom); |
if (ref($requests{$key}{'details'}) eq 'HASH') { |
my $requestkey = $cdom.'_'.$cnum; |
$entry = $key.':'.$crstype.':'.$requests{$key}{'details'}{'cdescr'}; |
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
if ($crstype eq 'official') { |
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
$entry .= ':'.$requests{$key}{'details'}{'instcode'}; |
$env{'user.domain'},$env{'user.name'}); |
} |
my $entry; |
} |
my $timestamp = $history{'reqtime'}; |
if ($entry ne '') { |
my $crstype = $history{'crstype'}; |
if (exists($queue_by_date{$timestamp})) { |
my $disposition = $history{'disposition'}; |
if (ref($queue_by_date{$timestamp}) eq 'ARRAY') { |
next if ((exists($history{'status'})) && ($history{'status'} eq 'created')); |
push(@{$queue_by_date{$timestamp}},$entry); |
next unless (($env{'form.crstype'} eq 'any') || |
|
($env{'form.crstype'} eq $crstype)); |
|
next unless (($disposition eq 'approval') || |
|
($disposition eq 'pending')); |
|
if (ref($history{'details'}) eq 'HASH') { |
|
$entry = $requestkey.':'.$crstype.':'. |
|
&escape($history{'details'}{'cdescr'}); |
|
if ($crstype eq 'official') { |
|
$entry .= ':'.&escape($history{'details'}{'instcode'}); |
|
} |
|
} |
|
if ($entry ne '') { |
|
if (exists($queue_by_date{$timestamp})) { |
|
if (ref($queue_by_date{$timestamp}) eq 'ARRAY') { |
|
push(@{$queue_by_date{$timestamp}},$entry); |
|
} |
|
} else { |
|
@{$queue_by_date{$timestamp}} = ($entry); |
} |
} |
} else { |
|
@{$queue_by_date{$timestamp}} = ($entry); |
|
} |
} |
} |
} |
} |
} |
} |
} |
$formname = 'requestcrs'; |
$formname = 'requestcrs'; |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
$output = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'."\n". |
$output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
|
'<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n". |
'<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n". |
'<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n"; |
'<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n". |
|
'<input type="hidden" name="showdom" value="" />'."\n". |
|
'<input type="hidden" name="cnum" value="" />'."\n"; |
if (@sortedtimes > 0) { |
if (@sortedtimes > 0) { |
$output .= &Apache::loncommon::start_data_table(). |
$output .= &Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
'<th>'.&mt('Action').'</th>'. |
'<th>'.&mt('Action').'</th>'. |
'<th>'.&mt('Description').'</th>'; |
'<th>'.&mt('Course Description').'</th>'. |
if ($env{'form.crstype'} eq 'all') { |
'<th>'.&mt('Domain').'</th>'; |
|
if ($env{'form.crstype'} eq 'any') { |
$output .= '<th>'.&mt('Type').'</th>'; |
$output .= '<th>'.&mt('Type').'</th>'; |
} |
} |
if (($env{'form.crstype'} eq 'all') || ($env{'form.crstype'} eq 'official')) { |
if (($env{'form.crstype'} eq 'any') || ($env{'form.crstype'} eq 'official')) { |
$output .= '<th>'.&mt('Institutional Code').'</th>'; |
$output .= '<th>'.&mt('Institutional Code').'</th>'; |
} |
} |
$output .= '<th>'.&mt('Date requested').'</th>'. |
$output .= '<th>'.&mt('Date requested').'</th>'. |
Line 1050 sub print_request_status {
|
Line 1200 sub print_request_status {
|
my ($key,$type,$desc,$instcode) = split(':',$request); |
my ($key,$type,$desc,$instcode) = split(':',$request); |
my ($cdom,$cnum) = split('_',$key); |
my ($cdom,$cnum) = split('_',$key); |
$output .= &Apache::loncommon::start_data_table_row(). |
$output .= &Apache::loncommon::start_data_table_row(). |
'<td><input type="button" value="'.&mt('Select').'" onclick="javascript:viewrequest('."'$cdom','$cnum'".')" /></td>'. |
'<td><input type="button" value="'.&mt('Select').'" onclick="javascript:chooseRequest('."'$cdom','$cnum'".')" /></td>'. |
'<td>'.$desc.'</td>'; |
'<td>'.&unescape($desc).'</td>'. |
if ($env{'form.crstype'} eq 'all') { |
'<td>'.$cdom.'</td>'; |
$output .= '<td>'.&course_types($type).'</td>'; |
if ($env{'form.crstype'} eq 'any') { |
|
my $typename = $typenames{$type}; |
|
if ($typename eq '') { |
|
$typename = &mt('Unknown type'); |
|
} |
|
$output .= '<td>'.$typename.'</td>'; |
} |
} |
if (($env{'form.crstype'} eq 'all') || |
if (($env{'form.crstype'} eq 'any') || |
($env{'form.crstype'} eq 'official')) { |
($env{'form.crstype'} eq 'official')) { |
$output .= '<td>'.$instcode.'</td>'; |
my $showinstcode; |
|
if ($type eq 'official') { |
|
$showinstcode = &unescape($instcode); |
|
} else { |
|
$showinstcode = &mt('Not applicable'); |
|
} |
|
$output .= '<td>'.$showinstcode.'</td>'; |
} |
} |
$output .= '<td>'.$showtime.'</td>'. |
$output .= '<td>'.$showtime.'</td>'. |
&Apache::loncommon::end_data_table_row(); |
&Apache::loncommon::end_data_table_row(); |
Line 1069 sub print_request_status {
|
Line 1230 sub print_request_status {
|
$output .= '<div>'.&mt('You have no matching course requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>'; |
$output .= '<div>'.&mt('You have no matching course requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>'; |
} |
} |
$output .= ' |
$output .= ' |
<input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" /> |
<br /><input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" /> |
</form>'; |
</form></div>'; |
return $output; |
return $output; |
} |
} |
|
|
|
sub print_cancel_request { |
|
my ($dom,$cnum) = @_; |
|
my $requestkey = $dom.'_'.$cnum; |
|
my ($result,$output); |
|
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $timestamp = $history{'reqtime'}; |
|
my $crstype = $history{'crstype'}; |
|
my $status = $history{'status'}; |
|
if (($status eq 'cancelled') || ($status eq 'created')) { |
|
if ($status eq 'cancelled') { |
|
$output = &mt('This request has already been cancelled.'); |
|
} elsif ($status eq 'created') { |
|
$output = &mt('This request has already been processed, and a course created.'); |
|
} |
|
$output = &mt('No further action will be taken'); |
|
} elsif (ref($history{'details'}) eq 'HASH') { |
|
my ($types,$typename) = &course_types(); |
|
my $showtype = $crstype; |
|
if (defined($typename->{$crstype})) { |
|
$showtype = $typename->{$crstype}; |
|
} |
|
$output = '<p>'.&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Description').'</th><th>'.&mt('Requested').'</th>'. |
|
'<th>'.&mt('Type').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(). |
|
&Apache::loncommon::start_data_table_row(). |
|
'<td>'.$history{details}{'cdescr'}.'</td><td>'. |
|
&Apache::lonlocal::locallocaltime($timestamp).'</td>'. |
|
'<td>'.$showtype.'</td>'. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::end_data_table(). |
|
'<br /><div class="LC_warning">'. |
|
&mt('Cancelling the request will remove it from the queue of pending course requests').'</div>'; |
|
$result = 'ok'; |
|
} else { |
|
$output = '<div class="LC_error">'.&mt('No record exists for the course ID').'</div>'; |
|
} |
|
} else { |
|
$output = '<div class="LC_error">'.&mt('Invalid course ID').'</div>'; |
|
} |
|
return ($result,$output); |
|
} |
|
|
|
sub viewrequest_javascript { |
|
my ($formname,$next) = @_; |
|
return <<"ENDJS"; |
|
|
|
function chooseRequest(cdom,cnum) { |
|
document.$formname.showdom.value = cdom; |
|
document.$formname.cnum.value = cnum; |
|
nextPage(document.$formname,'$next'); |
|
} |
|
|
|
ENDJS |
|
} |
|
|
|
sub viewdetails_javascript { |
|
my ($formname) = @_; |
|
return << "ENDJS"; |
|
|
|
function nextPage(formname,nextstate) { |
|
if (nextstate == "modify") { |
|
formname.state.value = "personnel"; |
|
formname.action.value = "new"; |
|
} else { |
|
formname.state.value = nextstate; |
|
} |
|
formname.submit(); |
|
} |
|
|
|
function backPage(formname,prevstate) { |
|
formname.state.value = prevstate; |
|
formname.submit(); |
|
} |
|
|
|
ENDJS |
|
} |
|
|
|
sub viewcancel_javascript { |
|
my $alert = &mt('Are you sure you want to cancel this request?\\n'. |
|
'Your request will be removed.'); |
|
return << "ENDJS"; |
|
function nextPage(formname,nextstate) { |
|
if (confirm('$alert')) { |
|
formname.state.value = nextstate; |
|
formname.submit(); |
|
} |
|
return; |
|
} |
|
|
|
ENDJS |
|
} |
|
|
sub print_request_logs { |
sub print_request_logs { |
my ($jscript,$loaditems,$crumb) = @_; |
my ($jscript,$loaditems,$crumb) = @_; |
return; |
return; |
Line 1100 sub print_review {
|
Line 1357 sub print_review {
|
$crstypename = $typename->{$env{'form.crstype'}}; |
$crstypename = $typename->{$env{'form.crstype'}}; |
} |
} |
} |
} |
|
my $category = 'Course'; |
|
if ($env{'form.crstype'} eq 'community') { |
|
$category = 'Community'; |
|
} |
|
|
$inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>'; |
$inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>'; |
$inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>'; |
$inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>'; |
|
|
|
my $enrollrow_title = &mt('Default Access Dates').'<br />'. |
|
'('.&Apache::lonnet::plaintext('st',$category).')'; |
if ($env{'form.crstype'} eq 'official') { |
if ($env{'form.crstype'} eq 'official') { |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) { |
if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) { |
foreach my $title (@{$codetitles}) { |
foreach my $title (@{$codetitles}) { |
Line 1120 sub print_review {
|
Line 1383 sub print_review {
|
} |
} |
} |
} |
if (&Apache::lonnet::auto_run('',$dom)) { |
if (&Apache::lonnet::auto_run('',$dom)) { |
|
$enrollrow_title = &mt('Enrollment'); |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
$enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'. |
'<th>'.&mt('Automatic Drops').'</th>'. |
'<th>'.&mt('Automatic Drops').'</th>'. |
'<th>'.&mt('Enrollment Starts').'</th>'. |
'<th>'.&mt('Enrollment Starts').'</th>'. |
Line 1190 sub print_review {
|
Line 1454 sub print_review {
|
$inst_headers .= '<th>'.&mt('Clone From').'</th>'; |
$inst_headers .= '<th>'.&mt('Clone From').'</th>'; |
if (($env{'form.clonecrs'} =~ /^$match_name$/) && |
if (($env{'form.clonecrs'} =~ /^$match_name$/) && |
($env{'form.clonedom'} =~ /^$match_domain$/)) { |
($env{'form.clonedom'} =~ /^$match_domain$/)) { |
my %coursehash = |
my $canclone = &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
&Apache::lonnet::courseiddump($env{'form.clonedom'},'.',1,'.','.', |
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
$env{'form.clonecrs'},undef,undef,'.'); |
if ($canclone) { |
my $cloneid = $env{'form.clonedom'}.'_'.$env{'form.clonecrs'}; |
my %courseenv = &Apache::lonnet::userenvironment($env{'form.clonedom'}, |
if (ref($coursehash{$cloneid}) eq 'HASH') { |
$env{'form.clonecrs'},('description','internal.coursecode')); |
$inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>'; |
if (keys(%courseenv) > 0) { |
my $clonedesc = $coursehash{$cloneid}{'description'}; |
$inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>'; |
my $cloneinst = $coursehash{$cloneid}{'inst_code'}; |
$inst_values .= '<td>'.$courseenv{'description'}.' '; |
|
my $cloneinst = $courseenv{'internal.coursecode'}; |
$inst_values .= '<td>'.$clonedesc.' '; |
if ($cloneinst ne '') { |
if ($cloneinst ne '') { |
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'}); |
$inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'}); |
} else { |
} else { |
$inst_values .= &mt('(from [_1])',$env{'form.clonedom'}); |
$inst_values .= &mt('(from [_1])',$env{'form.clonedom'}); |
} |
} |
$inst_values .= '</td><td>'; |
$inst_values .= '</td><td>'; |
if ($env{'form.datemode'} eq 'preserve') { |
if ($env{'form.datemode'} eq 'preserve') { |
$inst_values .= $ctxt{'prd'}; |
$inst_values .= $ctxt{'pcd'}; |
} elsif ($env{'form.datemode'} eq 'shift') { |
} elsif ($env{'form.datemode'} eq 'shift') { |
$inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'}); |
$inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'}); |
} else { |
} else { |
$inst_values .= $ctxt{'ncd'}; |
$inst_values .= $ctxt{'ncd'}; |
} |
} |
$inst_values .= '</td>'; |
$inst_values .= '</td>'; |
} else { |
} else { |
$inst_values .= '<td>'.&mt('Unknown').'</td>'; |
$inst_values .= '<td>'.&mt('Unknown').'</td>'; |
} |
} |
} else { |
|
$inst_values .= '<td>'.&mt('Not permitted'),'</td>'; |
|
} |
} else { |
} else { |
$inst_values .= '<td>'.&mt('None').'</td>'; |
$inst_values .= '<td>'.&mt('None').'</td>'; |
} |
} |
Line 1243 sub print_review {
|
Line 1509 sub print_review {
|
'<td>'.&mt('None').'</td></tr>'; |
'<td>'.&mt('None').'</td></tr>'; |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
if ($env{'form.person_'.$i.'_uname'} ne '') { |
if ($env{'form.person_'.$i.'_uname'} ne '') { |
|
my @allsecs = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec'); |
|
my $newsec = $env{'form.person_'.$i.'_newsec'}; |
|
$newsec =~ s/^\s+//; |
|
$newsec =~s/\s+$//; |
|
my @newsecs = split(/[\s,;]+/,$newsec); |
|
foreach my $sec (@newsecs) { |
|
next if ($sec =~ /\W/); |
|
next if ($newsec eq 'none'); |
|
if ($sec ne '') { |
|
unless (grep(/^\Q$sec\E$/,@allsecs)) { |
|
push(@allsecs,$sec); |
|
} |
|
} |
|
} |
|
my $showsec = 'None'; |
|
if (@allsecs) { |
|
$showsec = join(', ',@allsecs); |
|
} |
$personnel_values .= |
$personnel_values .= |
'<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '. |
'<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '. |
$env{'form.person_'.$i.'_lastname'}.'</td>'. |
$env{'form.person_'.$i.'_lastname'}.'</td>'. |
Line 1250 sub print_review {
|
Line 1534 sub print_review {
|
$env{'form.person_'.$i.'_dom'}.'</td>'. |
$env{'form.person_'.$i.'_dom'}.'</td>'. |
'<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'}, |
'<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'}, |
$container).'</td>'. |
$container).'</td>'. |
'<td>'.$env{'form.person_'.$i.'_sections'}.'</td></tr>'; |
'<td>'.$showsec.'</td></tr>'; |
} |
} |
} |
} |
my $output = '<p>'.&mt('Review the details of the course request before submission.').'</p>'. |
my $output = |
'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
&Apache::lonhtmlcommon::row_title(&mt('Owner')). |
&Apache::lonhtmlcommon::row_title(&mt('Owner')). |
'<table class="LC_innerpickbox"><tr>'. |
'<table class="LC_innerpickbox"><tr>'. |
Line 1269 sub print_review {
|
Line 1553 sub print_review {
|
'<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n". |
'<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n". |
'<tr>'.$inst_values.'</tr></table>'."\n". |
'<tr>'.$inst_values.'</tr></table>'."\n". |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title(&mt('Enrollment')). |
&Apache::lonhtmlcommon::row_title($enrollrow_title). |
'<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n". |
'<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n". |
'<tr>'.$enroll_values.'</tr></table>'."\n". |
'<tr>'.$enroll_values.'</tr></table>'."\n". |
&Apache::lonhtmlcommon::row_closure(); |
&Apache::lonhtmlcommon::row_closure(); |
Line 1284 sub print_review {
|
Line 1568 sub print_review {
|
$personnel_values.'</table>'."\n". |
$personnel_values.'</table>'."\n". |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::end_pick_box(); |
&Apache::lonhtmlcommon::end_pick_box(); |
my $cnum = &Apache::lonnet::generate_coursenum($dom); |
|
$output .= '<input type="hidden" name="cnum" value="'.$cnum.'" />'; |
|
return $output; |
return $output; |
} |
} |
|
|
Line 1302 sub dates_from_form {
|
Line 1584 sub dates_from_form {
|
} |
} |
|
|
sub courseinfo_form { |
sub courseinfo_form { |
my ($dom,$formname,$crstype) = @_; |
my ($dom,$formname,$crstype,$next) = @_; |
my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
my $nodescr = &mt('You must provide a (brief) course description.'); |
&Apache::lonhtmlcommon::row_title('Course Description'). |
my $js_validate = <<"ENDJS"; |
|
<script type="text/javascript"> |
|
// <![CDATA[' |
|
|
|
function validateForm() { |
|
if ((document.$formname.cdescr.value == "") || (document.$formname.cdescr.value == "undefined")) { |
|
alert('$nodescr'); |
|
return; |
|
} |
|
nextPage(document.$formname,'$next'); |
|
} |
|
// ]] |
|
</script> |
|
|
|
ENDJS |
|
|
|
my $output .= $js_validate."\n".'<div>'.&Apache::lonhtmlcommon::start_pick_box(). |
|
&Apache::lonhtmlcommon::row_title('Course Description'). |
'<input type="text" size="40" name="cdescr" />'; |
'<input type="text" size="40" name="cdescr" />'; |
my ($home_server_pick,$numlib) = |
my ($home_server_pick,$numlib) = |
&Apache::loncommon::home_server_form_item($dom,'chome', |
&Apache::loncommon::home_server_form_item($dom,'chome', |
'default','hide'); |
'default','hide'); |
if ($numlib > 1) { |
if ($numlib > 1) { |
$output .= &Apache::lonhtmlcommon::row_closure(). |
$output .= &Apache::lonhtmlcommon::row_closure(). |
&Apache::lonhtmlcommon::row_title( |
&Apache::lonhtmlcommon::row_title(&mt('Home Server for Course')); |
&mt('Home Server for Course')); |
|
} |
} |
$output .= $home_server_pick. |
$output .= $home_server_pick. |
&Apache::lonhtmlcommon::row_closure(1). |
&Apache::lonhtmlcommon::row_closure(1). |
Line 1351 sub clone_form {
|
Line 1649 sub clone_form {
|
return $output; |
return $output; |
} |
} |
|
|
sub clone_text { |
sub clone_text { |
return &Apache::lonlocal::texthash( |
return &Apache::lonlocal::texthash( |
'cid' => 'Course ID', |
'cid' => 'Course ID', |
'dmn' => 'Domain', |
'dmn' => 'Domain', |
Line 1466 sub get_course_dom {
|
Line 1764 sub get_course_dom {
|
} |
} |
|
|
sub display_navbuttons { |
sub display_navbuttons { |
my ($r,$formname,$prev,$prevtext,$next,$nexttext) = @_; |
my ($r,$formname,$prev,$prevtext,$next,$nexttext,$state,$other,$othertext) = @_; |
$r->print('<div class="LC_navbuttons">'); |
$r->print('<div class="LC_navbuttons">'); |
if ($prev) { |
if ($prev) { |
$r->print(' |
$r->print('<input type="button" name="previous" value = "'.$prevtext.'" '. |
<input type="button" name="previous" value = "'.$prevtext.'" |
'onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/>'. |
onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/> |
(' 'x3)); |
'); |
|
} elsif ($prevtext) { |
} elsif ($prevtext) { |
$r->print(' |
$r->print('<input type="button" name="previous" value = "'.$prevtext.'" '. |
<input type="button" name="previous" value = "'.$prevtext.'" |
'onclick="javascript:history.back()"/>'.(' 'x3)); |
onclick="javascript:history.back()"/> |
|
'); |
|
} |
} |
if ($next) { |
if ($state eq 'details') { |
|
$r->print(' <input type="button" name="other" value="'.$othertext.'" '. |
|
'onclick="javascript:nextPage(document.'.$formname.','."'".$other."'". |
|
')" />'); |
|
} |
|
if ($state eq 'courseinfo') { |
|
$r->print('<input type="button" name="next" value="'.$nexttext.'" '. |
|
'onclick="javascript:validateForm();" />'); |
|
} elsif ($next) { |
$r->print(' |
$r->print(' |
<input type="button" name="next" value="'.$nexttext.'" |
<input type="button" name="next" value="'.$nexttext.'" '. |
onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />'); |
'onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />'); |
} |
} |
$r->print('</div>'); |
$r->print('</div>'); |
} |
} |
Line 1532 sub print_request_outcome {
|
Line 1835 sub print_request_outcome {
|
$crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'}; |
$crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'}; |
} |
} |
} |
} |
|
} else { |
|
$enrollstart = ''; |
|
$enrollend = ''; |
} |
} |
|
|
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
for (my $i=0; $i<$env{'form.persontotal'}; $i++) { |
my $uname = $env{'form.person_'.$i.'_uname'}; |
my $uname = $env{'form.person_'.$i.'_uname'}; |
my $udom = $env{'form.person_'.$i.'_uname'}; |
my $udom = $env{'form.person_'.$i.'_dom'}; |
if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) { |
if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) { |
if (&Apache::lonnet::domain($udom) ne '') { |
if (&Apache::lonnet::domain($udom) ne '') { |
unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') { |
unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') { |
Line 1548 sub print_request_outcome {
|
Line 1853 sub print_request_outcome {
|
} |
} |
my $role = $env{'form.person_'.$i.'_role'}; |
my $role = $env{'form.person_'.$i.'_role'}; |
unless ($role eq '') { |
unless ($role eq '') { |
if (ref(@{$personnel{$uname.':'.$udom}{'roles'}}) eq 'ARRAY') { |
if (ref($personnel{$uname.':'.$udom}{'roles'}) eq 'ARRAY') { |
my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}}; |
my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}}; |
unless (grep(/^\Q$role\E$/,@curr_roles)) { |
unless (grep(/^\Q$role\E$/,@curr_roles)) { |
push(@{$personnel{$uname.':'.$udom}{'roles'}},$role); |
push(@{$personnel{$uname.':'.$udom}{'roles'}},$role); |
Line 1559 sub print_request_outcome {
|
Line 1864 sub print_request_outcome {
|
if ($role eq 'cc') { |
if ($role eq 'cc') { |
@{$personnel{$uname.':'.$udom}{$role}{'usec'}} = (); |
@{$personnel{$uname.':'.$udom}{$role}{'usec'}} = (); |
} else { |
} else { |
my @currsec; |
my @currsec = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec'); |
if ($env{'form.person_'.$i.'_sections'} ne '') { |
my $newsec = $env{'form.person_'.$i.'_newsec'}; |
my @sections = split(',',$env{'form.person_'.$i.'_sections'}); |
$newsec =~ s/^\s+//; |
foreach my $sec (@sections) { |
$newsec =~s/\s+$//; |
next if ($sec eq ''); |
my @newsecs = split(/[\s,;]+/,$newsec); |
if (@currsec > 0) { |
foreach my $sec (@newsecs) { |
unless(grep(/^\Q$sec\E$/,@currsec)) { |
next if ($sec =~ /\W/); |
push(@currsec,$sec); |
next if ($newsec eq 'none'); |
} |
if ($sec ne '') { |
|
unless (grep(/^\Q$sec\E$/,@currsec)) { |
|
push(@currsec,$sec); |
} |
} |
} |
} |
} |
} |
Line 1582 sub print_request_outcome {
|
Line 1889 sub print_request_outcome {
|
} |
} |
} |
} |
my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend'); |
my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend'); |
|
my $autodrops = 0; |
|
if ($env{'form.autodrops'}) { |
|
$autodrops = $env{'form.autodrops'}; |
|
} |
|
my $autoadds = 0; |
|
if ($env{'form.autoadds'}) { |
|
$autodrops = $env{'form.autoadds'}; |
|
} |
|
my $sectotal = 0; |
|
if ($env{'form.sectotal'}) { |
|
$sectotal = $env{'form.sectotal'}; |
|
} |
|
if ($env{'form.autoadds'}) { |
|
$autodrops = $env{'form.autoadds'}; |
|
} |
|
my $crosslisttotal = 0; |
|
if ($env{'form.crosslisttotal'}) { |
|
$crosslisttotal = $env{'form.crosslisttotal'}; |
|
} |
|
my $instcode = ''; |
|
if (exists($env{'form.instcode'})) { |
|
$instcode = $env{'form.instcode'}; |
|
} |
|
my $clonecrs = ''; |
|
my $clonedom = ''; |
|
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
|
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
|
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'}, |
|
$env{'form.clonedom'}); |
|
if ($clonehome ne 'no_host') { |
|
my $canclone = |
|
&Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
|
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
|
if ($canclone) { |
|
$clonecrs = $env{'form.clonecrs'}; |
|
$clonedom = $env{'form.clonedom'}; |
|
} |
|
} |
|
} |
my $details = { |
my $details = { |
owner => $env{'user.name'}, |
owner => $env{'user.name'}, |
domain => $env{'user.domain'}, |
domain => $env{'user.domain'}, |
Line 1590 sub print_request_outcome {
|
Line 1936 sub print_request_outcome {
|
coursehome => $env{'form.chome'}, |
coursehome => $env{'form.chome'}, |
cdescr => $env{'form.cdescr'}, |
cdescr => $env{'form.cdescr'}, |
crstype => $env{'form.crstype'}, |
crstype => $env{'form.crstype'}, |
instcode => $env{'form.instcode'}, |
instcode => $instcode, |
clonedom => $env{'form.clonedom'}, |
clonedom => $clonedom, |
clonecrs => $env{'form.clonecrs'}, |
clonecrs => $clonecrs, |
datemode => $env{'form.datemode'}, |
datemode => $env{'form.datemode'}, |
dateshift => $env{'form.datshift'}, |
dateshift => $env{'form.dateshift'}, |
sectotal => $env{'form.sectotal'}, |
sectotal => $sectotal, |
sections => \%sections, |
sections => \%sections, |
crosslisttotal => $env{'form.crosslisttotal'}, |
crosslisttotal => $crosslisttotal, |
crosslists => \%crosslistings, |
crosslists => \%crosslistings, |
autoadds => $env{'form.autoadds'}, |
autoadds => $autoadds, |
autodrops => $env{'form.autodrops'}, |
autodrops => $autodrops, |
enrollstart => $enrollstart, |
enrollstart => $enrollstart, |
enrollend => $enrollend, |
enrollend => $enrollend, |
accessstart => $accessstart, |
accessstart => $accessstart, |
Line 1620 sub print_request_outcome {
|
Line 1966 sub print_request_outcome {
|
$output = &mt('Unrecognized course type: [_1]',$crstype); |
$output = &mt('Unrecognized course type: [_1]',$crstype); |
} |
} |
} else { |
} else { |
my ($disposition,$message); |
my ($disposition,$message,$reqstatus); |
my %reqhash = ( |
my %reqhash = ( |
timestamp => $now, |
reqtime => $now, |
crstype => $crstype, |
crstype => $crstype, |
details => $details, |
details => $details, |
); |
); |
Line 1640 sub print_request_outcome {
|
Line 1986 sub print_request_outcome {
|
} else { |
} else { |
$disposition = 'approval'; |
$disposition = 'approval'; |
} |
} |
$reqhash{'status'} = $disposition; |
$reqhash{'disposition'} = $disposition; |
|
$reqstatus = $disposition; |
|
my ($modified,$queued); |
if ($disposition eq 'rejected') { |
if ($disposition eq 'rejected') { |
$output = &mt('Your course request was rejected.'); |
$output = &mt('Your course request was rejected.'); |
if ($message) { |
if ($message) { |
$output .= '<div class="LC_warning">'.$message.'</div>'; |
$output .= '<div class="LC_warning">'.$message.'</div>'; |
} |
} |
} elsif ($disposition eq 'process') { |
} elsif ($disposition eq 'process') { |
|
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles); |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
my $type = 'Course'; |
my $type = 'Course'; |
if ($crstype eq 'community') { |
if ($crstype eq 'community') { |
$type = 'Community'; |
$type = 'Community'; |
} |
} |
my %domdefs = &Apache::lonnet::get_domain_defaults($dom); |
|
my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles); |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
foreach my $role (@roles) { |
foreach my $role (@roles) { |
$longroles{$role}=&Apache::lonnet::plaintext($role,$type); |
$longroles{$role}=&Apache::lonnet::plaintext($role,$type); |
} |
} |
my $owneremail; |
my $result = &Apache::loncoursequeueadmin::course_creation($dom,$cnum, |
my %emails = &Apache::loncommon::getemails(); |
'autocreate',$details,\$logmsg,\$newusermsg,\$addresult, |
foreach my $email ('permanentemail','critnotification','notification') { |
\$enrollcount,\$response,\$keysmsg,\%domdefs,\%longroles); |
$owneremail = $emails{$email}; |
if ($result eq 'created') { |
last if ($owneremail ne ''); |
|
} |
|
my %reqdetails = &build_batchcreatehash($dom,$details,$owneremail,\%domdefs); |
|
my $cid = &LONCAPA::batchcreatecourse::build_course($dom,$cnum,'requestcourses',\%reqdetails,\%longroles,\$logmsg,\$newusermsg,\$addresult,\$enrollcount,\$output,\$keysmsg,$env{'user.domain'},$env{'user.name'},$cnum,$crstype); |
|
$disposition = 'created'; |
|
if ($cid eq "/$dom/$cnum") { |
|
$disposition = 'created'; |
$disposition = 'created'; |
$output = &mt('Your course request has been processed and the course has been created.').'<br />'.&mt('You will need to logout and log-in again to be able to select a role in the course.'); |
$reqstatus = 'created'; |
|
$output = &mt('Your course request has been processed and the course has been created.'). |
|
'<br />'. |
|
&mt('You will need to logout and log-in again to be able to select a role in the course.'); |
} else { |
} else { |
$output = &mt('An error occurred when processing your course request.').'<br />'.&mt('You may want to review the request details and submit the request again.'); |
$output = '<span class="LC_error">'. |
|
&mt('An error occurred when processing your course request.'). |
|
'<br />'. |
|
&mt('You may want to review the request details and submit the request again.'). |
|
'</span>'; |
} |
} |
} else { |
} else { |
my $requestid = $cnum.'_'.$disposition; |
my $requestid = $cnum.'_'.$disposition; |
Line 1683 sub print_request_outcome {
|
Line 2032 sub print_request_outcome {
|
description => $env{'form.cdescr'}, |
description => $env{'form.cdescr'}, |
}, |
}, |
}; |
}; |
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
my $statuskey = 'status:'.$dom.':'.$cnum; |
$dom); |
my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey], |
if ($putresult eq 'ok') { |
$env{'user.domain'},$env{'user.name'}); |
my %emails = &Apache::loncommon::getemails(); |
if (exists($userreqhash{$statuskey})) { |
my $address; |
$modified = 1; |
if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) { |
my %queuehash = &Apache::lonnet::get_dom('courserequestqueue', |
$address = $emails{'permanentemail'}; |
[$cnum.'_approval', |
if ($address eq '') { |
$cnum.'_pending'],$dom); |
$address = $emails{'notification'}; |
if ((exists($queuehash{$cnum.'_approval'})) || |
} |
(exists($queuehash{$cnum.'_pending'}))) { |
} |
$queued = 1; |
$output = &mt('Your course request has been recorded.').'<br />'; |
} |
if ($disposition eq 'approval') { |
} |
$output .= &mt('Your course request has been recorded.').'<br />'. |
unless ($queued) { |
&mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'. |
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
&mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />'; |
$dom); |
if ($address ne '') { |
if ($putresult eq 'ok') { |
$output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />'; |
$output = &mt('Your course request has been recorded.').'<br />'. |
} |
¬ification_information($disposition,$req_notifylist, |
if ($req_notifylist) { |
$cnum,$now); |
my $fullname = &Apache::loncommon::plainname($env{'user.name'}, |
|
$env{'user.domain'}); |
|
&Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,$fullname,$now,$dom,$details); |
|
} |
|
} else { |
} else { |
$output .= '<div class="LC_info">'. |
$reqstatus = 'domainerror'; |
&mt('Your request has been placed in a queue pending administrative action.').'<br />'. |
$reqhash{'disposition'} = $disposition; |
&mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'. |
my $warning = &mt('An error occurred saving your request in the pending requests queue.'); |
&mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.'). |
$output = '<span class"LC_warning">'.$warning.'</span><br />'; |
'</div>'; |
|
} |
} |
} else { |
|
$reqhash{'status'} = 'domainerror'; |
|
$reqhash{'disposition'} = $disposition; |
|
my $warning = &mt('An error occurred saving your request in the pending requests queue.'); |
|
$output = '<span class"LC_warning">'.$warning.'</span><br />'; |
|
|
|
} |
} |
} |
} |
my $storeresult; |
my ($storeresult,$statusresult); |
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
$storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey, |
$storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey, |
'courserequests'); |
'courserequests'); |
|
if ($storeresult eq 'ok') { |
|
my %status = ( |
|
'status:'.$dom.':'.$cnum => $reqstatus, |
|
); |
|
$statusresult = &Apache::lonnet::put('courserequests',\%status); |
|
} |
} else { |
} else { |
$storeresult = 'error: invalid requestkey format'; |
$storeresult = 'error: invalid requestkey format'; |
} |
} |
if ($storeresult ne 'ok') { |
if ($storeresult ne 'ok') { |
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the details of your request: [_1].',$storeresult).'</span><br />'; |
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the details of your request: [_1].',$storeresult).'</span><br />'; |
&Apache::lonnet::logthis("Error saving course request - $requestkey for $env{'user.name'}:$env{'user.domain'} - $storeresult"); |
&Apache::lonnet::logthis("Error saving course request - $requestkey for $env{'user.name'}:$env{'user.domain'} - $storeresult"); |
|
} elsif ($statusresult ne 'ok') { |
|
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the status of your request: [_1].',$statusresult).'</span><br />'; |
|
&Apache::lonnet::logthis("Error saving course request status for $requestkey (for $env{'user.name'}:$env{'user.domain'}) - $statusresult"); |
|
} |
|
if ($modified && $queued && $storeresult eq 'ok') { |
|
$output .= '<p>'.&mt('Your course request has been updated').'</p>'. |
|
¬ification_information($disposition,$req_notifylist,$cnum,$now); |
} |
} |
} |
} |
return $output; |
return $output; |
} |
} |
|
|
|
sub notification_information { |
|
my ($disposition,$req_notifylist,$cnum,$now) = @_; |
|
my %emails = &Apache::loncommon::getemails(); |
|
my $address; |
|
if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) { |
|
$address = $emails{'permanentemail'}; |
|
if ($address eq '') { |
|
$address = $emails{'notification'}; |
|
} |
|
} |
|
my $output; |
|
if ($disposition eq 'approval') { |
|
$output .= &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'. |
|
&mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />'; |
|
if ($address ne '') { |
|
$output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />'; |
|
} |
|
if ($req_notifylist) { |
|
my $fullname = &Apache::loncommon::plainname($env{'user.name'}, |
|
$env{'user.domain'}); |
|
my $sender = $env{'user.name'}.':'.$env{'user.domain'}; |
|
&Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,"$fullname ($env{'user.name'}:$env{'user.domain'})",$cnum,$env{'form.cdescr'},$now,'coursereq',$sender); |
|
} |
|
} else { |
|
$output .= '<div class="LC_info">'. |
|
&mt('Your request has been placed in a queue pending administrative action.').'<br />'. |
|
&mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'. |
|
&mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.'). |
|
'</div>'; |
|
} |
|
return $output; |
|
} |
|
|
sub get_processtype { |
sub get_processtype { |
my ($dom,$crstype,$inststatuses,$domconfig) = @_; |
my ($dom,$crstype,$inststatuses,$domconfig) = @_; |
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
Line 1853 sub check_autolimit {
|
Line 2237 sub check_autolimit {
|
return; |
return; |
} |
} |
|
|
sub build_batchcreatehash { |
sub retrieve_settings { |
my ($dom,$details,$owneremail,$domdefs) = @_; |
my ($dom,$cnum) = @_; |
my %batchhash; |
my ($result,%reqinfo) = &get_request_settings($dom,$cnum); |
my @items = qw{owner domain coursehome clonecrs clonedom datemode dateshift enrollstart enrollend accessstart accessend sections crosslists users}; |
if ($result eq 'ok') { |
if ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH')) { |
if (($env{'user.name'} eq $reqinfo{'owner'}) && |
my $emailenc = &Apache::lonnet::escape($owneremail); |
($env{'user.domain'} eq $reqinfo{'domain'})) { |
my $owner = $details->{'owner'}.':'.$details->{'domain'}; |
$env{'form.chome'} = $reqinfo{'coursehome'}; |
foreach my $item (@items) { |
$env{'form.cdescr'} = $reqinfo{'cdescr'}; |
$batchhash{$item} = $details->{$item}; |
$env{'form.crstype'} = $reqinfo{'crstype'}; |
|
&generate_date_items($reqinfo{'accessstart'},'accessstart'); |
|
&generate_date_items($reqinfo{'accessend'},'accessend'); |
|
if ($reqinfo{'accessend'} == 0) { |
|
$env{'form.no_end_date'} = 1; |
|
} |
|
if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
|
&generate_date_items($reqinfo{'enrollstart'},'enrollstart'); |
|
&generate_date_items($reqinfo{'enrollend'},'enrollend'); |
|
} |
|
$env{'form.clonecrs'} = $reqinfo{'clonecrs'}; |
|
$env{'form.clonedom'} = $reqinfo{'clonedom'}; |
|
$env{'form.datemode'} = $reqinfo{'datemode'}; |
|
$env{'form.dateshift'} = $reqinfo{'dateshift'}; |
|
if (($reqinfo{'crstype'} eq 'official') && ($reqinfo{'instcode'} ne '')) { |
|
$env{'form.sectotal'} = $reqinfo{'sectotal'}; |
|
$env{'form.crosslisttotal'} = $reqinfo{'crosslisttotal'}; |
|
$env{'form.autoadds'} = $reqinfo{'autoadds'}; |
|
$env{'form.autdrops'} = $reqinfo{'autodrops'}; |
|
$env{'form.instcode'} = $reqinfo{'instcode'}; |
|
my %crscode = ( |
|
instcode => $reqinfo{'instcode'}, |
|
); |
|
&extract_instcode($dom,'instcode',\%crscode); |
|
} |
|
my @currsec; |
|
if (ref($reqinfo{'sections'}) eq 'HASH') { |
|
foreach my $i (sort(keys(%{$reqinfo{'sections'}}))) { |
|
if (ref($reqinfo{'sections'}{$i}) eq 'HASH') { |
|
my $sec = $reqinfo{'sections'}{$i}{'inst'};; |
|
$env{'form.secnum_'.$i} = $sec; |
|
if (!grep(/^\Q$sec\E$/,@currsec)) { |
|
push(@currsec,$sec); |
|
} |
|
$env{'form.loncapasec_'.$i} = $reqinfo{'sections'}{$i}{'loncapa'}; |
|
} |
|
} |
|
} |
|
if (ref($reqinfo{'crosslistings'}) eq 'HASH') { |
|
foreach my $i (sort(keys(%{$reqinfo{'crosslistings'}}))) { |
|
if (ref($reqinfo{'crosslistings'}{$i}) eq 'HASH') { |
|
$env{'form.crosslist_'.$i.'_lcsec'} = $reqinfo{'crosslistings'}{$i}{'loncapa'}; |
|
my $xlistsec = $reqinfo{'crosslistings'}{$i}{'instsec'}; |
|
my %crscode = ( |
|
$i => $reqinfo{'crosslistings'}{$i}{'instcode'}, |
|
); |
|
&extract_instcode($dom,'crosslist',\%crscode,$1,$xlistsec); |
|
} |
|
} |
|
} |
|
if (ref($reqinfo{'personnel'}) eq 'HASH') { |
|
my $i = 0; |
|
foreach my $user (sort(keys(%{$reqinfo{'personnel'}}))) { |
|
my ($uname,$udom) = split(':',$user); |
|
if (ref($reqinfo{'personnel'}{$user}) eq 'HASH') { |
|
if (ref($reqinfo{'personnel'}{$user}{'roles'}) eq 'ARRAY') { |
|
foreach my $role (sort(@{$reqinfo{'personnel'}{$user}{'roles'}})) { |
|
$env{'form.person_'.$i.'_role'} = $role; |
|
$env{'form.person_'.$i.'_firstname'} = $reqinfo{'personnel'}{$user}{'firstname'}; |
|
$env{'form.person_'.$i.'_lastname'} = $reqinfo{'personnel'}{$user}{'lastname'}; ; |
|
$env{'form.person_'.$i.'_emailaddr'} = $reqinfo{'personnel'}{$user}{'emailaddr'}; |
|
$env{'form.person_'.$i.'_uname'} = $uname; |
|
$env{'form.person_'.$i.'_dom'} = $udom; |
|
if (ref($reqinfo{'personnel'}{$user}{$role}) eq 'HASH') { |
|
if (ref($reqinfo{'personnel'}{$user}{$role}{'usec'}) eq 'ARRAY') { |
|
my @usecs = @{$reqinfo{'personnel'}{$user}{$role}{'usec'}}; |
|
my @newsecs; |
|
if (@usecs > 0) { |
|
foreach my $sec (@usecs) { |
|
if (grep(/^\Q$sec\E/,@currsec)) { |
|
$env{'form.person_'.$i.'_sec'} = $sec; |
|
} else { |
|
push (@newsecs,$sec); |
|
} |
|
} |
|
} |
|
if (@newsecs > 0) { |
|
$env{'form.person_'.$i.'_newsec'} = join(',',@newsecs); |
|
} |
|
} |
|
} |
|
$i ++; |
|
} |
|
} |
|
} |
|
} |
|
$env{'form.persontotal'} = $i; |
|
} |
} |
} |
$batchhash{'title'} = $details->{'cdescr'}; |
} |
$batchhash{'coursecode'} = $details->{'instcode'}; |
return $result; |
$batchhash{'emailenc'} = $emailenc; |
} |
$batchhash{'adds'} = $details->{'autoadds'}; |
|
$batchhash{'drops'} = $details->{'autodrops'}; |
sub get_request_settings { |
$batchhash{'authtype'} = $domdefs->{'auth_def'}; |
my ($dom,$cnum) = @_; |
$batchhash{'authparam'} = $domdefs->{'auth_arg_def'}; |
my $requestkey = $dom.'_'.$cnum; |
if ($details->{'crstype'} eq 'community') { |
my ($result,%reqinfo); |
$batchhash{'crstype'} = 'Community'; |
if ($requestkey =~ /^($match_domain)_($match_courseid)$/) { |
|
my %history = &Apache::lonnet::restore($requestkey,'courserequests', |
|
$env{'user.domain'},$env{'user.name'}); |
|
my $disposition = $history{'disposition'}; |
|
if (($disposition eq 'approval') || ($disposition eq 'pending')) { |
|
if (ref($history{'details'}) eq 'HASH') { |
|
%reqinfo = %{$history{'details'}}; |
|
$result = 'ok'; |
|
} else { |
|
$result = 'nothash'; |
|
} |
} else { |
} else { |
$batchhash{'crstype'} = 'Course'; |
$result = 'notqueued'; |
} |
} |
$batchhash{'users'}{$details->{$owner}} = { |
} else { |
firstname => $env{'environment.first'}, |
$result = 'invalid'; |
lastname => $env{'environment.last'}, |
|
emailenc => $emailenc, |
|
email => $owneremail, |
|
}; |
|
} |
} |
return %batchhash; |
return ($result,%reqinfo); |
} |
} |
|
|
sub retrieve_settings { |
sub extract_instcode { |
my ($dom,$request_id) = @_; |
my ($cdom,$element,$crscodehashref,$counter,$xlistsec) = @_; |
my %reqinfo = &get_request_settings($request_id,$dom); |
my (%codes,@codetitles,%cat_titles,%cat_order); |
my %stored; |
if (ref($crscodehashref) eq 'HASH') { |
$stored{'cdescr'} = &unescape($reqinfo{'description'}); |
if (&Apache::lonnet::auto_instcode_format('requests',$cdom,$crscodehashref, |
$stored{'accessstart'} = $reqinfo{'accessstart'}; |
\%codes,\@codetitles,\%cat_titles,\%cat_order) eq 'ok') { |
$stored{'accessend'} = $reqinfo{'accessend'}; |
if (@codetitles > 0) { |
if ($stored{'accessend'} == 0) { |
my $sel = $element; |
$stored{'no_end_date'} = 1; |
if ($element eq 'crosslist') { |
} |
$sel .= '_'.$counter; |
$stored{'enrollstart'} = $reqinfo{'enrollstart'}; |
} |
$stored{'enrollend'} = $reqinfo{'enrollend'}; |
my $lastitem = pop(@codetitles); |
$stored{'crosslist'} = $reqinfo{'crosslist'}; |
foreach my $title (@codetitles) { |
$stored{'clonecrs'} = $reqinfo{'clonecrs'}; |
if (ref($cat_order{$title}) eq 'ARRAY') { |
$stored{'clonedom'} = $reqinfo{'clonedom'}; |
if (@{$cat_order{$title}} > 0) { |
$stored{'sections'} = $reqinfo{'sections'}; |
$env{'form.'.$sel.'_'.$title} = $cat_order{$title}[0]; |
$stored{'personnel'} = $reqinfo{'personnel'}; |
} |
|
} |
return %stored; |
} |
|
if ($element eq 'crosslist') { |
|
$env{'form.'.$sel.'_'.$lastitem} = $xlistsec; |
|
} |
|
} |
|
} |
|
} |
|
return; |
} |
} |
|
|
sub get_request_settings { |
sub generate_date_items { |
my ($request_id,$dom); |
my ($currentval,$item) = @_; |
|
if ($currentval =~ /\d+/) { |
|
my ($tzname,$sec,$min,$hour,$mday,$month,$year) = |
|
&Apache::lonhtmlcommon::get_timedates($currentval); |
|
$env{'form.'.$item.'_day'} = $mday; |
|
$env{'form.'.$item.'_month'} = $month+1; |
|
$env{'form.'.$item.'_year'} = $year; |
|
} |
|
return; |
} |
} |
|
|
1; |
1; |