'.&Apache::lonhtmlcommon::start_pick_box();
my $persontotal = $env{'form.persontotal'};
if (!defined($persontotal)) {
@@ -736,8 +819,12 @@ sub print_personnel_menu {
my $roleoptions;
my @roles = &Apache::lonuserutils::roles_by_context('course');
+ my $type = 'Course';
+ if ($crstype eq 'community') {
+ $type = 'Community';
+ }
foreach my $role (@roles) {
- my $plrole=&Apache::lonnet::plaintext($role);
+ my $plrole=&Apache::lonnet::plaintext($role,$type);
$roleoptions .= '
'."\n";
}
my %customroles=&Apache::lonuserutils::my_custom_roles();
@@ -783,13 +870,13 @@ sub print_personnel_menu {
for (my $i=0; $i<$persontotal; $i++) {
my @linkargs = map { 'person_'.$i.'_'.$_ } (@items);
my $linkargstr = join("','",@linkargs);
- my $userlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$userlinktxt);
+ my $userlink = &Apache::loncommon::selectuser_link($formname,@linkargs,$dom,$userlinktxt);
my $uname_form = '
';
+ 'openuserbrowser('."'$formname','$linkargstr','$dom'".');" />';
my $onchange = 'javascript:fix_domain('."'$formname','person_".$i."_dom',".
"'person_".$i."_hidedom'".');'.
- 'openuserbrowser('."'$formname','$linkargstr'".');';
+ 'openuserbrowser('."'$formname','$linkargstr','$dom'".');';
my $udom_form = &Apache::loncommon::select_dom_form($dom,'person_'.$i.'_dom','',
1,$onchange).
'
';
@@ -833,16 +920,324 @@ sub print_personnel_menu {
}
sub print_request_status {
- return;
+ my ($dom,$crumb) = @_;
+ my $js = <
$b} (keys(%queue_by_date));
+ $output .= ''."\n".
+ ''."\n".
+ ''."\n".
+ ''."\n";
+ if (@sortedtimes > 0) {
+ $output .= &Apache::loncommon::start_data_table().
+ &Apache::loncommon::start_data_table_header_row().
+ ''.&mt('Action').' | '.
+ ''.&mt('Description').' | ';
+ if ($env{'form.crstype'} eq 'all') {
+ $output .= ''.&mt('Type').' | ';
+ }
+ if (($env{'form.crstype'} eq 'all') || ($env{'form.crstype'} eq 'official')) {
+ $output .= ''.&mt('Institutional Code').' | ';
+ }
+ $output .= ''.&mt('Date requested').' | '.
+ &Apache::loncommon::end_data_table_header_row();
+ my $count = 0;
+ foreach my $item (@sortedtimes) {
+ my $showtime = &Apache::lonlocal::locallocaltime($item);
+ if (ref($queue_by_date{$item}) eq 'ARRAY') {
+ foreach my $request (sort(@{$queue_by_date{$item}})) {
+ my ($key,$type,$desc,$instcode) = split(':',$request);
+ my ($cdom,$cnum) = split('_',$key);
+ $output .= &Apache::loncommon::start_data_table_row().
+ ' | '.
+ ''.$desc.' | ';
+ if ($env{'form.crstype'} eq 'all') {
+ $output .= ''.&course_types($type).' | ';
+ }
+ if (($env{'form.crstype'} eq 'all') ||
+ ($env{'form.crstype'} eq 'official')) {
+ $output .= ''.$instcode.' | ';
+ }
+ $output .= ''.$showtime.' | '.
+ &Apache::loncommon::end_data_table_row();
+ }
+ }
+ }
+ $output .= &Apache::loncommon::end_data_table();
+ } else {
+ $output .= ''.&mt('You have no course requests pending approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'
';
+ }
+ $output .= '
+
+'.
+ &Apache::loncommon::end_page();
+ return $output;
}
sub print_request_logs {
+ my ($jscript,$loaditems,$crumb) = @_;
return;
}
sub print_review {
- my ($r,$state,$dom) = @_;
- return;
+ my ($formname,$dom,$codetitles,$cat_titles,$cat_order,$code_order) = @_;
+ my ($types,$typename) = &course_types();
+ my ($owner,$ownername,$owneremail);
+ $owner = $env{'user.name'}.':'.$env{'user.domain'};
+ $ownername = &Apache::loncommon::plainname($env{'user.name'},
+ $env{'user.domain'},'first');
+ my %emails = &Apache::loncommon::getemails();
+ foreach my $email ('permanentemail','critnotification','notification') {
+ $owneremail = $emails{$email};
+ last if ($owneremail ne '');
+ }
+ my ($inst_headers,$inst_values,$crstypename,$enroll_headers,$enroll_values,
+ $section_headers,$section_values,$personnel_headers,$personnel_values);
+
+ $crstypename = $env{'form.crstype'};
+ if (ref($typename) eq 'HASH') {
+ unless ($typename->{$env{'form.crstype'}} eq '') {
+ $crstypename = $typename->{$env{'form.crstype'}};
+ }
+ }
+
+ $inst_headers = ''.&mt('Description').' | '.&mt('Type').' | ';
+ $inst_values = ''.$env{'form.cdescr'}.' | '.$crstypename.' | ';
+
+ if ($env{'form.crstype'} eq 'official') {
+ if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) {
+ foreach my $title (@{$codetitles}) {
+ if ($env{'form.instcode_'.$title} ne '') {
+ $inst_headers .= ''.$title.' | ';
+ my $longitem = $env{'form.instcode_'.$title};
+ if (ref($cat_titles->{$title}) eq 'HASH') {
+ if ($cat_titles->{$title}{$env{'form.instcode_'.$title}} ne '') {
+ $longitem = $cat_titles->{$title}{$env{'form.instcode_'.$title}};
+ }
+ }
+ $inst_values .= ''.$longitem.' | ';
+ }
+ }
+ }
+ if (&Apache::lonnet::auto_run('',$dom)) {
+ $enroll_headers = ''.&mt('Automatic Adds').' | '.
+ ''.&mt('Automatic Drops').' | '.
+ ''.&mt('Enrollment Starts').' | '.
+ ''.&mt('Enrollment Ends').' | ';
+ $section_headers = ''.&mt('Sections').' | '.
+ ''.&mt('Crosslistings').' | ';
+
+ my ($startenroll,$endenroll) = &dates_from_form('startenroll','endenroll');
+ my @autoroster = (&mt('No'),&mt('Yes'));
+ $enroll_values = ''.$autoroster[$env{'form.autoadds'}].' | '.
+ ''.$autoroster[$env{'form.autodrops'}].' | '.
+ ''.&Apache::lonlocal::locallocaltime($startenroll).' | '.
+ ''.&Apache::lonlocal::locallocaltime($endenroll).' | ';
+ $section_values = ''.
+ &mt('Institutional section').' | '.
+ ''.&mt('LON-CAPA section').' | ';
+ my $secinfo;
+ if ($env{'form.sectotal'} > 0) {
+ for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
+ if ($env{'form.sec_'.$i}) {
+ $secinfo .= ''.$env{'form.secnum_'.$i}.' | ';
+ if ($env{'form.loncapasec_'.$i} ne '') {
+ $secinfo .= $env{'form.loncapasec_'.$i};
+ } else {
+ $secinfo .= &mt('None');
+ }
+ $secinfo .= ' | ';
+ }
+ }
+ }
+ if ($secinfo eq '') {
+ $secinfo = ''.&mt('None').' | ';
+ }
+ $section_values .= $secinfo.'
| '.
+ ''.
+ &mt('Institutional course/section').' | '.
+ ''.&mt('LON-CAPA section').' | ';
+ my $xlistinfo;
+ if ($env{'form.crosslisttotal'}) {
+ for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
+ if ($env{'form.crosslist_'.$i}) {
+ $xlistinfo .= '';
+ if (ref($code_order) eq 'ARRAY') {
+ if (@{$code_order} > 0) {
+ foreach my $item (@{$code_order}) {
+ $xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item};
+ }
+ }
+ }
+ $xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.' | ';
+ if ($env{'form.crosslist_'.$i.'_lcsec'}) {
+ $xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'};
+ } else {
+ $xlistinfo .= &mt('None');
+ }
+ $xlistinfo .= ' | ';
+ }
+ }
+ }
+ if ($xlistinfo eq '') {
+ $xlistinfo = ''.&mt('None').' | ';
+ }
+ $section_values .= $xlistinfo.'
| ';
+ }
+ }
+
+ my %ctxt = &clone_text();
+ $inst_headers .= ''.&mt('Clone From').' | ';
+ if (($env{'form.clonecourse'} =~ /^$match_name$/) &&
+ ($env{'form.clonedomain'} =~ /^$match_domain$/)) {
+ my %coursehash =
+ &Apache::lonnet::courseiddump($env{'form.clonedomain'},'.',1,'.','.',
+ $env{'form.clonecourse'},undef,undef,'.');
+ my $cloneid = $env{'form.clonedomain'}.'_'.$env{'form.clonecourse'};
+ if (ref($coursehash{$cloneid}) eq 'HASH') {
+ $inst_headers .= ''.$ctxt{'dsh'}.' | ';
+ my $clonedesc = $coursehash{$cloneid}{'description'};
+ my $cloneinst = $coursehash{$cloneid}{'inst_code'};
+
+ $inst_values .= ''.$clonedesc.' ';
+ if ($cloneinst ne '') {
+ $inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedomain'});
+ } else {
+ $inst_values .= &mt('(from [_1])',$env{'form.clonedomain'});
+ }
+ $inst_values .= ' | ';
+ if ($env{'form.datemode'} eq 'preserve') {
+ $inst_values .= $ctxt{'pcd'};
+ } elsif ($env{'form.datemode'} eq 'shift') {
+ $inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'});
+ } else {
+ $inst_values .= $ctxt{'ncd'};
+ }
+ $inst_values .= ' | ';
+ } else {
+ $inst_values .= ''.&mt('Unknown').' | ';
+ }
+ } else {
+ $inst_values .= ''.&mt('None').' | ';
+ }
+ $enroll_headers .= ''.&mt('Access Starts').' | '.
+ ''.&mt('Access Ends').' | ';
+ my ($startaccess,$endaccess) = &dates_from_form('startaccess','endaccess');
+ $enroll_values .= ''.&Apache::lonlocal::locallocaltime($startaccess).' | ';
+ if ($endaccess == 0) {
+ $enroll_values .= ''.&mt('No end date').' | ';
+ } else {
+ $enroll_values .= ''.&Apache::lonlocal::locallocaltime($endaccess).' | ';
+ }
+
+ my $container = 'Course';
+ if ($env{'form.crstype'} eq 'community') {
+ $container = 'Community';
+ }
+
+ $personnel_headers = ''.&mt('Name').' | '.&mt('Username:Domain').
+ ' | '.&mt('Role').' | '.&mt('LON-CAPA Sections').
+ ' | ';
+ $personnel_values .= ''.$ownername.' | '.$owner.' | '.
+ ''.&Apache::lonnet::plaintext('cc',$container).' | '.
+ ''.&mt('None').' |
';
+ for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
+ if ($env{'form.person_'.$i.'_uname'} ne '') {
+ $personnel_values .=
+ ''.$env{'form.person_'.$i.'_first'}.' '.
+ $env{'form.person_'.$i.'_last'}.' | '.
+ ''.$env{'form.person_'.$i.'_uname'}.':'.
+ $env{'form.person_'.$i.'_dom'}.' | '.
+ ''.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'},
+ $container).' | '.
+ ''.$env{'form.person_'.$i.'_sections'}.' |
';
+ }
+ }
+ my $output = ''.&mt('Review the details of the course request before submission.').'
'.
+ ''.&Apache::lonhtmlcommon::start_pick_box().
+ &Apache::lonhtmlcommon::row_title(&mt('Owner')).
+ '
'.
+ ''.&mt('Name').' | '.
+ ''.&mt('Username:Domain').' | '.
+ ''.&mt('E-mail address').' | '.
+ '
'."\n".
+ ''.$ownername.' | '.$owner.' | '.
+ ''.$owneremail.' | '.
+ '
'."\n".
+ &Apache::lonhtmlcommon::row_closure().
+ &Apache::lonhtmlcommon::row_title(&mt('Description')).
+ '
'.$inst_headers.'
'."\n".
+ ''.$inst_values.'
'."\n".
+ &Apache::lonhtmlcommon::row_closure().
+ &Apache::lonhtmlcommon::row_title(&mt('Enrollment')).
+ '
'.$enroll_headers.'
'."\n".
+ ''.$enroll_values.'
'."\n".
+ &Apache::lonhtmlcommon::row_closure();
+ if ($section_headers ne '') {
+ $output .= &Apache::lonhtmlcommon::row_title(&mt('Sections')).
+ '
'.$section_headers.'
'."\n".
+ ''.$section_values.'
'."\n".
+ &Apache::lonhtmlcommon::row_closure();
+ }
+ $output .= &Apache::lonhtmlcommon::row_title(&mt('Personnel')).
+ '
'.$personnel_headers.'
'."\n".
+ $personnel_values.'
'."\n".
+ &Apache::lonhtmlcommon::row_closure(1).
+ &Apache::lonhtmlcommon::end_pick_box();
+ my $cnum = &Apache::lonnet::generate_coursenum($dom);
+ $output .= '
';
+ return $output;
+}
+
+sub dates_from_form {
+ my ($startname,$endname) = @_;
+ my $startdate = &Apache::lonhtmlcommon::get_date_from_form($startname);
+ my $enddate = &Apache::lonhtmlcommon::get_date_from_form($endname);
+ if ($endname eq 'endaccess') {
+ if (exists($env{'form.no_end_date'}) ) {
+ $enddate = 0;
+ }
+ }
+ return ($startdate,$enddate);
}
sub courseinfo_form {
@@ -864,14 +1259,7 @@ sub clone_form {
}
my $cloneform = &Apache::loncommon::select_dom_form($dom,'clonedomain').
&Apache::loncommon::selectcourse_link($formname,'clonecourse','clonedomain','','','',$type);
- my %lt = &Apache::lonlocal::texthash(
- 'cid' => 'Course ID',
- 'dmn' => 'Domain',
- 'dsh' => 'Date Shift',
- 'ncd' => 'Do not clone date parameters',
- 'prd' => 'Clone date parameters as-is',
- 'shd' => 'Shift date parameters by number of days',
- );
+ my %lt = &clone_text();
my $output .=
&Apache::lonhtmlcommon::start_pick_box().
&Apache::lonhtmlcommon::row_title($lt{'cid'}).'