version 1.15, 2009/08/17 04:39:15
|
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 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 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'},$state); |
|
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 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 1038 sub print_request_status {
|
Line 1172 sub print_request_status {
|
} |
} |
$formname = 'requestcrs'; |
$formname = 'requestcrs'; |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date)); |
$output = '<h3>'.&mt('Pending course requests').'</h3><div>'."\n". |
$output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'."\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(). |
Line 1065 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>'.&unescape($desc).'</td>'. |
'<td>'.&unescape($desc).'</td>'. |
'<td>'.$cdom.'</td>'; |
'<td>'.$cdom.'</td>'; |
if ($env{'form.crstype'} eq 'any') { |
if ($env{'form.crstype'} eq 'any') { |
Line 1100 sub print_request_status {
|
Line 1235 sub print_request_status {
|
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 1126 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 1146 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 1232 sub print_review {
|
Line 1470 sub print_review {
|
} |
} |
$inst_values .= '</td><td>'; |
$inst_values .= '</td><td>'; |
if ($env{'form.datemode'} eq 'preserve') { |
if ($env{'form.datemode'} eq 'preserve') { |
$inst_values .= $ctxt{'pcd'}; |
$inst_values .= $ctxt{'prd'}; |
} 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 { |
Line 1299 sub print_review {
|
Line 1537 sub print_review {
|
'<td>'.$showsec.'</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 1315 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 1330 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 1374 ENDJS
|
Line 1610 ENDJS
|
'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 1414 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 1529 sub get_course_dom {
|
Line 1764 sub get_course_dom {
|
} |
} |
|
|
sub display_navbuttons { |
sub display_navbuttons { |
my ($r,$formname,$prev,$prevtext,$next,$nexttext,$state) = @_; |
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 ($state eq 'details') { |
|
$r->print(' <input type="button" name="other" value="'.$othertext.'" '. |
|
'onclick="javascript:nextPage(document.'.$formname.','."'".$other."'". |
|
')" />'); |
} |
} |
if ($state eq 'courseinfo') { |
if ($state eq 'courseinfo') { |
$r->print(' |
$r->print('<input type="button" name="next" value="'.$nexttext.'" '. |
<input type="button" name="next" value="'.$nexttext.'" onclick="javascript:validateForm();" />'); |
'onclick="javascript:validateForm();" />'); |
} elsif ($next) { |
} 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 1604 sub print_request_outcome {
|
Line 1841 sub print_request_outcome {
|
} |
} |
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 1616 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 1679 sub print_request_outcome {
|
Line 1916 sub print_request_outcome {
|
my $clonedom = ''; |
my $clonedom = ''; |
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && |
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
($env{'form.clonedom'} =~ /^($match_domain)$/)) { |
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonedom'},$env{'form.clonecrs'}); |
my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'}, |
|
$env{'form.clonedom'}); |
if ($clonehome ne 'no_host') { |
if ($clonehome ne 'no_host') { |
my $canclone = &can_clone_course($env{'user.name'},$env{'user.domain'}, |
my $canclone = |
$env{'form.clonecrs'}, $env{'form.clonedom'}); |
&Apache::loncoursequeueadmin::can_clone_course($env{'user.name'}, |
|
$env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'}); |
if ($canclone) { |
if ($canclone) { |
$clonecrs = $env{'form.clonecrs'}; |
$clonecrs = $env{'form.clonecrs'}; |
$clonedom = $env{'form.clonedom'}; |
$clonedom = $env{'form.clonedom'}; |
Line 1749 sub print_request_outcome {
|
Line 1988 sub print_request_outcome {
|
} |
} |
$reqhash{'disposition'} = $disposition; |
$reqhash{'disposition'} = $disposition; |
$reqstatus = $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) { |
Line 1792 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('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'. |
unless ($queued) { |
&mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />'; |
my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request, |
if ($address ne '') { |
$dom); |
$output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />'; |
if ($putresult eq 'ok') { |
} |
$output = &mt('Your course request has been recorded.').'<br />'. |
if ($req_notifylist) { |
¬ification_information($disposition,$req_notifylist, |
my $fullname = &Apache::loncommon::plainname($env{'user.name'}, |
$cnum,$now); |
$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 { |
} 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 { |
|
$reqstatus = '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,$statusresult); |
my ($storeresult,$statusresult); |
Line 1851 sub print_request_outcome {
|
Line 2080 sub print_request_outcome {
|
$output .= '<span class="LC_warning">'.&mt('An error occurred saving a record of the status of your request: [_1].',$statusresult).'</span><br />'; |
$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"); |
&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; |
|
} |
|
|
|
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; |
return $output; |
} |
} |
Line 1972 sub check_autolimit {
|
Line 2238 sub check_autolimit {
|
} |
} |
|
|
sub retrieve_settings { |
sub retrieve_settings { |
my ($dom,$request_id) = @_; |
my ($dom,$cnum) = @_; |
my %reqinfo = &get_request_settings($request_id,$dom); |
my ($result,%reqinfo) = &get_request_settings($dom,$cnum); |
my %stored; |
if ($result eq 'ok') { |
$stored{'cdescr'} = &unescape($reqinfo{'description'}); |
if (($env{'user.name'} eq $reqinfo{'owner'}) && |
$stored{'accessstart'} = $reqinfo{'accessstart'}; |
($env{'user.domain'} eq $reqinfo{'domain'})) { |
$stored{'accessend'} = $reqinfo{'accessend'}; |
$env{'form.chome'} = $reqinfo{'coursehome'}; |
if ($stored{'accessend'} == 0) { |
$env{'form.cdescr'} = $reqinfo{'cdescr'}; |
$stored{'no_end_date'} = 1; |
$env{'form.crstype'} = $reqinfo{'crstype'}; |
} |
&generate_date_items($reqinfo{'accessstart'},'accessstart'); |
$stored{'enrollstart'} = $reqinfo{'enrollstart'}; |
&generate_date_items($reqinfo{'accessend'},'accessend'); |
$stored{'enrollend'} = $reqinfo{'enrollend'}; |
if ($reqinfo{'accessend'} == 0) { |
$stored{'crosslist'} = $reqinfo{'crosslist'}; |
$env{'form.no_end_date'} = 1; |
$stored{'clonecrs'} = $reqinfo{'clonecrs'}; |
} |
$stored{'clonedom'} = $reqinfo{'clonedom'}; |
if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) { |
$stored{'sections'} = $reqinfo{'sections'}; |
&generate_date_items($reqinfo{'enrollstart'},'enrollstart'); |
$stored{'personnel'} = $reqinfo{'personnel'}; |
&generate_date_items($reqinfo{'enrollend'},'enrollend'); |
|
} |
return %stored; |
$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; |
|
} |
|
} |
|
} |
|
return $result; |
} |
} |
|
|
sub get_request_settings { |
sub get_request_settings { |
my ($request_id,$dom); |
my ($dom,$cnum) = @_; |
|
my $requestkey = $dom.'_'.$cnum; |
|
my ($result,%reqinfo); |
|
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 { |
|
$result = 'notqueued'; |
|
} |
|
} else { |
|
$result = 'invalid'; |
|
} |
|
return ($result,%reqinfo); |
|
} |
|
|
|
sub extract_instcode { |
|
my ($cdom,$element,$crscodehashref,$counter,$xlistsec) = @_; |
|
my (%codes,@codetitles,%cat_titles,%cat_order); |
|
if (ref($crscodehashref) eq 'HASH') { |
|
if (&Apache::lonnet::auto_instcode_format('requests',$cdom,$crscodehashref, |
|
\%codes,\@codetitles,\%cat_titles,\%cat_order) eq 'ok') { |
|
if (@codetitles > 0) { |
|
my $sel = $element; |
|
if ($element eq 'crosslist') { |
|
$sel .= '_'.$counter; |
|
} |
|
my $lastitem = pop(@codetitles); |
|
foreach my $title (@codetitles) { |
|
if (ref($cat_order{$title}) eq 'ARRAY') { |
|
if (@{$cat_order{$title}} > 0) { |
|
$env{'form.'.$sel.'_'.$title} = $cat_order{$title}[0]; |
|
} |
|
} |
|
} |
|
if ($element eq 'crosslist') { |
|
$env{'form.'.$sel.'_'.$lastitem} = $xlistsec; |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
|
sub generate_date_items { |
|
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; |