version 1.295.2.22, 2010/01/19 20:52:24
|
version 1.415, 2016/10/10 02:53:02
|
Line 51 In LON-CAPA, roles are actually collecti
|
Line 51 In LON-CAPA, roles are actually collecti
|
Assistant", "Course Coordinator", and other such roles are really just |
Assistant", "Course Coordinator", and other such roles are really just |
collection of privileges that are useful in many circumstances. |
collection of privileges that are useful in many circumstances. |
|
|
Creating custom roles can be done by the Domain Coordinator through |
Custom roles can be defined by a Domain Coordinator, Course Coordinator |
the Create User functionality. That screen will show all privileges |
or Community Coordinator via the Manage User functionality. |
that can be assigned to users. For a complete list of privileges, |
The custom role editor screen will show all privileges which can be |
please see C</home/httpd/lonTabs/rolesplain.tab>. |
assigned to users. For a complete list of privileges, please see |
|
C</home/httpd/lonTabs/rolesplain.tab>. |
|
|
Custom role definitions are stored in the C<roles.db> file of the role |
Custom role definitions are stored in the C<roles.db> file of the creator |
author. |
of the role. |
|
|
=cut |
=cut |
|
|
Line 110 sub initialize_authen_forms {
|
Line 111 sub initialize_authen_forms {
|
|
|
sub auth_abbrev { |
sub auth_abbrev { |
my %abv_auth = ( |
my %abv_auth = ( |
krb5 => 'krb', |
krb5 => 'krb', |
krb4 => 'krb', |
krb4 => 'krb', |
internal => 'int', |
internal => 'int', |
localuth => 'loc', |
localauth => 'loc', |
unix => 'fsys', |
unix => 'fsys', |
); |
); |
return %abv_auth; |
return %abv_auth; |
} |
} |
|
|
# ==================================================== |
# ==================================================== |
|
|
sub portfolio_quota { |
sub user_quotas { |
my ($ccuname,$ccdomain) = @_; |
my ($ccuname,$ccdomain) = @_; |
my %lt = &Apache::lonlocal::texthash( |
my %lt = &Apache::lonlocal::texthash( |
'usrt' => "User Tools", |
'usrt' => "User Tools", |
'disk' => "Disk space allocated to user's portfolio files", |
|
'cuqu' => "Current quota", |
|
'cust' => "Custom quota", |
'cust' => "Custom quota", |
'defa' => "Default", |
|
'chqu' => "Change quota", |
'chqu' => "Change quota", |
); |
); |
my ($currquota,$quotatype,$inststatus,$defquota) = |
|
&Apache::loncommon::get_user_quota($ccuname,$ccdomain); |
|
my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($ccdomain); |
|
my ($longinsttype,$showquota,$custom_on,$custom_off,$defaultinfo); |
|
if ($inststatus ne '') { |
|
if ($usertypes->{$inststatus} ne '') { |
|
$longinsttype = $usertypes->{$inststatus}; |
|
} |
|
} |
|
$custom_on = ' '; |
|
$custom_off = ' checked="checked" '; |
|
my $quota_javascript = <<"END_SCRIPT"; |
my $quota_javascript = <<"END_SCRIPT"; |
<script type="text/javascript"> |
<script type="text/javascript"> |
// <![CDATA[ |
// <![CDATA[ |
function quota_changes(caller) { |
function quota_changes(caller,context) { |
|
var customoff = document.getElementById('custom_'+context+'quota_off'); |
|
var customon = document.getElementById('custom_'+context+'quota_on'); |
|
var number = document.getElementById(context+'quota'); |
if (caller == "custom") { |
if (caller == "custom") { |
if (document.cu.customquota[0].checked) { |
if (customoff) { |
document.cu.portfolioquota.value = ""; |
if (customoff.checked) { |
|
number.value = ""; |
|
} |
} |
} |
} |
} |
if (caller == "quota") { |
if (caller == "quota") { |
document.cu.customquota[1].checked = true; |
if (customon) { |
|
customon.checked = true; |
|
} |
} |
} |
|
return; |
} |
} |
// ]]> |
// ]]> |
</script> |
</script> |
END_SCRIPT |
END_SCRIPT |
if ($quotatype eq 'custom') { |
my $longinsttype; |
$custom_on = $custom_off; |
my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($ccdomain); |
$custom_off = ' '; |
|
$showquota = $currquota; |
|
if ($longinsttype eq '') { |
|
$defaultinfo = &mt('For this user, the default quota would be [_1]' |
|
.' Mb.',$defquota); |
|
} else { |
|
$defaultinfo = &mt("For this user, the default quota would be [_1]". |
|
" Mb, as determined by the user's institutional". |
|
" affiliation ([_2]).",$defquota,$longinsttype); |
|
} |
|
} else { |
|
if ($longinsttype eq '') { |
|
$defaultinfo = &mt('For this user, the default quota is [_1]' |
|
.' Mb.',$defquota); |
|
} else { |
|
$defaultinfo = &mt("For this user, the default quota of [_1]". |
|
" Mb, is determined by the user's institutional". |
|
" affiliation ([_2]).",$defquota,$longinsttype); |
|
} |
|
} |
|
|
|
my $output = $quota_javascript."\n". |
my $output = $quota_javascript."\n". |
'<h3>'.$lt{'usrt'}.'</h3>'."\n". |
'<h3>'.$lt{'usrt'}.'</h3>'."\n". |
&Apache::loncommon::start_data_table(); |
&Apache::loncommon::start_data_table(); |
Line 188 END_SCRIPT
|
Line 163 END_SCRIPT
|
if (&Apache::lonnet::allowed('mut',$ccdomain)) { |
if (&Apache::lonnet::allowed('mut',$ccdomain)) { |
$output .= &build_tools_display($ccuname,$ccdomain,'tools'); |
$output .= &build_tools_display($ccuname,$ccdomain,'tools'); |
} |
} |
if (&Apache::lonnet::allowed('mpq',$ccdomain)) { |
|
$output .= '<tr class="LC_info_row">'."\n". |
my %titles = &Apache::lonlocal::texthash ( |
' <td>'.$lt{'disk'}.'</td>'."\n". |
portfolio => "Disk space allocated to user's portfolio files", |
' </tr>'."\n". |
author => "Disk space allocated to user's Authoring Space (if role assigned)", |
&Apache::loncommon::start_data_table_row()."\n". |
); |
' <td>'.$lt{'cuqu'}.': '. |
foreach my $name ('portfolio','author') { |
$currquota.' Mb. '. |
my ($currquota,$quotatype,$inststatus,$defquota) = |
$defaultinfo.'</td>'."\n". |
&Apache::loncommon::get_user_quota($ccuname,$ccdomain,$name); |
&Apache::loncommon::end_data_table_row()."\n". |
if ($longinsttype eq '') { |
&Apache::loncommon::start_data_table_row()."\n". |
if ($inststatus ne '') { |
' <td><span class="LC_nobreak">'.$lt{'chqu'}. |
if ($usertypes->{$inststatus} ne '') { |
': <label>'. |
$longinsttype = $usertypes->{$inststatus}; |
'<input type="radio" name="customquota" value="0" '. |
} |
$custom_off.' onchange="javascript:quota_changes('."'custom'".')"'. |
} |
' />'.$lt{'defa'}.' ('.$defquota.' Mb).</label> '. |
} |
' <label><input type="radio" name="customquota" value="1" '. |
my ($showquota,$custom_on,$custom_off,$defaultinfo); |
$custom_on.' onchange="javascript:quota_changes('."'custom'".')" />'. |
$custom_on = ' '; |
$lt{'cust'}.':</label> '. |
$custom_off = ' checked="checked" '; |
'<input type="text" name="portfolioquota" size ="5" value="'. |
if ($quotatype eq 'custom') { |
$showquota.'" onfocus="javascript:quota_changes('."'quota'".')" '. |
$custom_on = $custom_off; |
'/> Mb</span></td>'."\n". |
$custom_off = ' '; |
&Apache::loncommon::end_data_table_row()."\n"; |
$showquota = $currquota; |
} |
if ($longinsttype eq '') { |
|
$defaultinfo = &mt('For this user, the default quota would be [_1]' |
|
.' MB.',$defquota); |
|
} else { |
|
$defaultinfo = &mt("For this user, the default quota would be [_1]". |
|
" MB, as determined by the user's institutional". |
|
" affiliation ([_2]).",$defquota,$longinsttype); |
|
} |
|
} else { |
|
if ($longinsttype eq '') { |
|
$defaultinfo = &mt('For this user, the default quota is [_1]' |
|
.' MB.',$defquota); |
|
} else { |
|
$defaultinfo = &mt("For this user, the default quota of [_1]". |
|
" MB, is determined by the user's institutional". |
|
" affiliation ([_2]).",$defquota,$longinsttype); |
|
} |
|
} |
|
|
|
if (&Apache::lonnet::allowed('mpq',$ccdomain)) { |
|
$output .= '<tr class="LC_info_row">'."\n". |
|
' <td>'.$titles{$name}.'</td>'."\n". |
|
' </tr>'."\n". |
|
&Apache::loncommon::start_data_table_row()."\n". |
|
' <td><span class="LC_nobreak">'. |
|
&mt('Current quota: [_1] MB',$currquota).'</span> '. |
|
$defaultinfo.'</td>'."\n". |
|
&Apache::loncommon::end_data_table_row()."\n". |
|
&Apache::loncommon::start_data_table_row()."\n". |
|
' <td><span class="LC_nobreak">'.$lt{'chqu'}. |
|
': <label>'. |
|
'<input type="radio" name="custom_'.$name.'quota" id="custom_'.$name.'quota_off" '. |
|
'value="0" '.$custom_off.' onchange="javascript:quota_changes('."'custom','$name'".');"'. |
|
' /><span class="LC_nobreak">'. |
|
&mt('Default ([_1] MB)',$defquota).'</span></label> '. |
|
' <label><input type="radio" name="custom_'.$name.'quota" id="custom_'.$name.'quota_on" '. |
|
'value="1" '.$custom_on.' onchange="javascript:quota_changes('."'custom','$name'".');"'. |
|
' />'.$lt{'cust'}.':</label> '. |
|
'<input type="text" name="'.$name.'quota" id="'.$name.'quota" size ="5" '. |
|
'value="'.$showquota.'" onfocus="javascript:quota_changes('."'quota','$name'".');"'. |
|
' /> '.&mt('MB').'</span></td>'."\n". |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
|
} |
$output .= &Apache::loncommon::end_data_table(); |
$output .= &Apache::loncommon::end_data_table(); |
return $output; |
return $output; |
} |
} |
Line 218 END_SCRIPT
|
Line 236 END_SCRIPT
|
sub build_tools_display { |
sub build_tools_display { |
my ($ccuname,$ccdomain,$context) = @_; |
my ($ccuname,$ccdomain,$context) = @_; |
my (@usertools,%userenv,$output,@options,%validations,%reqtitles,%reqdisplay, |
my (@usertools,%userenv,$output,@options,%validations,%reqtitles,%reqdisplay, |
$colspan); |
$colspan,$isadv,%domconfig); |
my %lt = &Apache::lonlocal::texthash ( |
my %lt = &Apache::lonlocal::texthash ( |
'blog' => "Personal User Blog", |
'blog' => "Personal User Blog", |
'aboutme' => "Personal Information Page", |
'aboutme' => "Personal Information Page", |
|
'webdav' => "WebDAV access to Authoring Spaces (if SSL and author/co-author)", |
'portfolio' => "Personal User Portfolio", |
'portfolio' => "Personal User Portfolio", |
'avai' => "Available", |
'avai' => "Available", |
'cusa' => "availability", |
'cusa' => "availability", |
Line 230 sub build_tools_display {
|
Line 249 sub build_tools_display {
|
'uscu' => "Use custom", |
'uscu' => "Use custom", |
'official' => 'Can request creation of official courses', |
'official' => 'Can request creation of official courses', |
'unofficial' => 'Can request creation of unofficial courses', |
'unofficial' => 'Can request creation of unofficial courses', |
|
'community' => 'Can request creation of communities', |
|
'textbook' => 'Can request creation of textbook courses', |
|
'placement' => 'Can request creation of placement tests', |
|
'requestauthor' => 'Can request author space', |
); |
); |
if ($context eq 'requestcourses') { |
if ($context eq 'requestcourses') { |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
'requestcourses.official','requestcourses.unofficial'); |
'requestcourses.official','requestcourses.unofficial', |
@usertools = ('official','unofficial'); |
'requestcourses.community','requestcourses.textbook', |
|
'requestcourses.placement'); |
|
@usertools = ('official','unofficial','community','textbook','placement'); |
@options =('norequest','approval','autolimit','validate'); |
@options =('norequest','approval','autolimit','validate'); |
%validations = &Apache::lonnet::auto_courserequest_checks($ccdomain); |
%validations = &Apache::lonnet::auto_courserequest_checks($ccdomain); |
%reqtitles = &courserequest_titles(); |
%reqtitles = &courserequest_titles(); |
%reqdisplay = &courserequest_display(); |
%reqdisplay = &courserequest_display(); |
$colspan = ' colspan="2"'; |
$colspan = ' colspan="2"'; |
|
%domconfig = |
|
&Apache::lonnet::get_dom('configuration',['requestcourses'],$ccdomain); |
|
$isadv = &Apache::lonnet::is_advanced_user($ccuname,$ccdomain); |
|
} elsif ($context eq 'requestauthor') { |
|
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
|
'requestauthor'); |
|
@usertools = ('requestauthor'); |
|
@options =('norequest','approval','automatic'); |
|
%reqtitles = &requestauthor_titles(); |
|
%reqdisplay = &requestauthor_display(); |
|
$colspan = ' colspan="2"'; |
|
%domconfig = |
|
&Apache::lonnet::get_dom('configuration',['requestauthor'],$ccdomain); |
} else { |
} else { |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
'tools.aboutme','tools.portfolio','tools.blog'); |
'tools.aboutme','tools.portfolio','tools.blog', |
@usertools = ('aboutme','blog','portfolio'); |
'tools.webdav'); |
|
@usertools = ('aboutme','blog','webdav','portfolio'); |
} |
} |
foreach my $item (@usertools) { |
foreach my $item (@usertools) { |
my ($custom_access,$curr_access,$cust_on,$cust_off,$tool_on,$tool_off, |
my ($custom_access,$curr_access,$cust_on,$cust_off,$tool_on,$tool_off, |
Line 253 sub build_tools_display {
|
Line 292 sub build_tools_display {
|
$curr_access = |
$curr_access = |
&Apache::lonnet::usertools_access($ccuname,$ccdomain,$item,undef, |
&Apache::lonnet::usertools_access($ccuname,$ccdomain,$item,undef, |
$context); |
$context); |
if ($userenv{$context.'.'.$item} ne '') { |
if ($context eq 'requestauthor') { |
|
if ($userenv{$context} ne '') { |
|
$cust_on = ' checked="checked" '; |
|
$cust_off = ''; |
|
} |
|
} elsif ($userenv{$context.'.'.$item} ne '') { |
$cust_on = ' checked="checked" '; |
$cust_on = ' checked="checked" '; |
$cust_off = ''; |
$cust_off = ''; |
} |
} |
Line 263 sub build_tools_display {
|
Line 307 sub build_tools_display {
|
} else { |
} else { |
$custom_access = &mt('Currently from custom setting.'); |
$custom_access = &mt('Currently from custom setting.'); |
} |
} |
|
} elsif ($context eq 'requestauthor') { |
|
if ($userenv{$context} eq '') { |
|
$custom_access = &mt('Currently from default setting.'); |
|
} else { |
|
$custom_access = &mt('Currently from custom setting.'); |
|
} |
} else { |
} else { |
if ($userenv{$context.'.'.$item} eq '') { |
if ($userenv{$context.'.'.$item} eq '') { |
$custom_access = |
$custom_access = |
Line 284 sub build_tools_display {
|
Line 334 sub build_tools_display {
|
' <td'.$colspan.'>'.$lt{$item}.'</td>'."\n". |
' <td'.$colspan.'>'.$lt{$item}.'</td>'."\n". |
' </tr>'."\n". |
' </tr>'."\n". |
&Apache::loncommon::start_data_table_row()."\n"; |
&Apache::loncommon::start_data_table_row()."\n"; |
if ($context eq 'requestcourses') { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
my ($curroption,$currlimit); |
my ($curroption,$currlimit); |
$curroption = $userenv{$context.'.'.$item}; |
my $envkey = $context.'.'.$item; |
|
if ($context eq 'requestauthor') { |
|
$envkey = $context; |
|
} |
|
if ($userenv{$envkey} ne '') { |
|
$curroption = $userenv{$envkey}; |
|
} else { |
|
my (@inststatuses); |
|
if ($context eq 'requestcourses') { |
|
$curroption = |
|
&Apache::loncoursequeueadmin::get_processtype('course',$ccuname,$ccdomain, |
|
$isadv,$ccdomain,$item, |
|
\@inststatuses,\%domconfig); |
|
} else { |
|
$curroption = |
|
&Apache::loncoursequeueadmin::get_processtype('requestauthor',$ccuname,$ccdomain, |
|
$isadv,$ccdomain,undef, |
|
\@inststatuses,\%domconfig); |
|
} |
|
} |
if (!$curroption) { |
if (!$curroption) { |
$curroption = 'norequest'; |
$curroption = 'norequest'; |
} |
} |
Line 323 sub build_tools_display {
|
Line 392 sub build_tools_display {
|
$checked = ' checked="checked"'; |
$checked = ' checked="checked"'; |
} |
} |
} |
} |
|
my $name = 'crsreq_'.$item; |
|
if ($context eq 'requestauthor') { |
|
$name = $item; |
|
} |
$custdisp .= '<tr><td><span class="LC_nobreak"><label>'. |
$custdisp .= '<tr><td><span class="LC_nobreak"><label>'. |
'<input type="radio" name="crsreq_'.$item. |
'<input type="radio" name="'.$name.'" '. |
'" value="'.$val.'"'.$checked.' />'. |
'value="'.$val.'"'.$checked.' />'. |
$reqtitles{$option}.'</label> '; |
$reqtitles{$option}.'</label> '; |
if ($option eq 'autolimit') { |
if ($option eq 'autolimit') { |
$custdisp .= '<input type="text" name="crsreq_'. |
$custdisp .= '<input type="text" name="'.$name. |
$item.'_limit" size="1" '. |
'_limit" size="1" '. |
'value="'.$currlimit.'" /></span><br />'. |
'value="'.$currlimit.'" /></span><br />'. |
$reqtitles{'unlimited'}; |
$reqtitles{'unlimited'}; |
} else { |
} else { |
$custdisp .= '</span>'; |
$custdisp .= '</span>'; |
} |
} |
$custdisp .= '</td></tr>'; |
$custdisp .= '</td></tr>'; |
} |
} |
$custdisp .= '</table>'; |
$custdisp .= '</table>'; |
$custradio = '</span></td><td>'.&mt('Custom setting').'<br />'.$custdisp; |
$custradio = '</span></td><td>'.&mt('Custom setting').'<br />'.$custdisp; |
} else { |
} else { |
$currdisp = ($curr_access?&mt('Yes'):&mt('No')); |
$currdisp = ($curr_access?&mt('Yes'):&mt('No')); |
|
my $name = $context.'_'.$item; |
|
if ($context eq 'requestauthor') { |
|
$name = $context; |
|
} |
$custdisp = '<span class="LC_nobreak"><label>'. |
$custdisp = '<span class="LC_nobreak"><label>'. |
'<input type="radio" name="'.$context.'_'.$item.'"'. |
'<input type="radio" name="'.$name.'"'. |
' value="1"'. $tool_on.'/>'.&mt('On').'</label> <label>'. |
' value="1" '.$tool_on.'/>'.&mt('On').'</label> <label>'. |
'<input type="radio" name="'.$context.'_'.$item.'" value="0" '. |
'<input type="radio" name="'.$name.'" value="0" '. |
$tool_off.'/>'.&mt('Off').'</label></span>'; |
$tool_off.'/>'.&mt('Off').'</label></span>'; |
$custradio = (' 'x2).'--'.$lt{'cusa'}.': '.$custdisp. |
$custradio = (' 'x2).'--'.$lt{'cusa'}.': '.$custdisp. |
'</span>'; |
'</span>'; |
Line 371 sub coursereq_externaluser {
|
Line 448 sub coursereq_externaluser {
|
'official' => 'Can request creation of official courses', |
'official' => 'Can request creation of official courses', |
'unofficial' => 'Can request creation of unofficial courses', |
'unofficial' => 'Can request creation of unofficial courses', |
'community' => 'Can request creation of communities', |
'community' => 'Can request creation of communities', |
|
'textbook' => 'Can request creation of textbook courses', |
|
'placement' => 'Can request creation of placement tests', |
); |
); |
|
|
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.community'); |
'reqcrsotherdom.community','reqcrsotherdom.textbook', |
@usertools = ('official','unofficial','community'); |
'reqcrsotherdom.placement'); |
|
@usertools = ('official','unofficial','community','textbook','placement'); |
@options = ('approval','validate','autolimit'); |
@options = ('approval','validate','autolimit'); |
%validations = &Apache::lonnet::auto_courserequest_checks($cdom); |
%validations = &Apache::lonnet::auto_courserequest_checks($cdom); |
my $optregex = join('|',@options); |
my $optregex = join('|',@options); |
Line 440 sub coursereq_externaluser {
|
Line 520 sub coursereq_externaluser {
|
return $output; |
return $output; |
} |
} |
|
|
|
sub domainrole_req { |
|
my ($ccuname,$ccdomain) = @_; |
|
return '<br /><h3>'. |
|
&mt('User Can Request Assignment of Domain Roles?'). |
|
'</h3>'."\n". |
|
&Apache::loncommon::start_data_table(). |
|
&build_tools_display($ccuname,$ccdomain, |
|
'requestauthor'). |
|
&Apache::loncommon::end_data_table(); |
|
} |
|
|
|
sub domadhocroles { |
|
my ($ccuname,$ccdomain) = @_; |
|
my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'}); |
|
my %existing=&Apache::lonnet::dump('roles',$env{'request.role.domain'}, |
|
$confname,'rolesdef_'); |
|
my $output; |
|
if (keys(%existing) > 0) { |
|
my @current; |
|
my $curradhoc = 'adhocroles.'.$env{'request.role.domain'}; |
|
my %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,$curradhoc); |
|
if ($userenv{$curradhoc}) { |
|
@current = split(/,/,$userenv{$curradhoc}); |
|
} |
|
my %customroles; |
|
foreach my $key (keys(%existing)) { |
|
if ($key=~/^rolesdef\_(\w+)$/) { |
|
my $rolename = $1; |
|
my %privs; |
|
($privs{'system'},$privs{'domain'},$privs{'course'}) = split(/\_/,$existing{$key}); |
|
$customroles{$rolename} = \%privs; |
|
} |
|
} |
|
$output = '<br /><h3>'. |
|
&mt('Ad Hoc Course Roles Selectable via Helpdesk Role'). |
|
'</h3>'."\n". |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Action').'</th><th>'.&mt('Role').'</th>'. |
|
'<th>'.&mt('Privileges in Course').'<th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
foreach my $key (sort(keys(%customroles))) { |
|
$output .= &Apache::loncommon::start_data_table_row(); |
|
if (grep(/^\Q$key\E$/,@current)) { |
|
$output .= '<td><label>'. |
|
'<input type="checkbox" name="adhocroledel" value="'.$key.'" />'. |
|
&mt('Delete').'</label>'. |
|
'</td>'; |
|
} else { |
|
$output .= '<td><label>'. |
|
'<input type="checkbox" name="adhocroleadd" value="'.$key.'" />'. |
|
&mt('Add').'</label>'. |
|
'</td>'; |
|
} |
|
$output .= '<td>'.$key.'</td><td>'; |
|
foreach my $level ('course','domain','system') { |
|
if ($customroles{$key}{$level}) { |
|
my $suffix; |
|
if (($level eq 'domain') || ($level eq 'system')) { |
|
$suffix = ' ('.&mt($level).')'; |
|
} |
|
my @privs = split(/:/,$customroles{$key}{$level}); |
|
foreach my $item (@privs) { |
|
next if ($item eq ''); |
|
my ($priv,$cond) = split(/\&/,$item); |
|
$output .= &Apache::lonnet::plaintext($priv,'Course').$suffix.'<br />'; |
|
} |
|
} |
|
} |
|
$output .= '</td>'. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
$output .= &Apache::loncommon::end_data_table(); |
|
} |
|
return $output; |
|
} |
|
|
sub courserequest_titles { |
sub courserequest_titles { |
my %titles = &Apache::lonlocal::texthash ( |
my %titles = &Apache::lonlocal::texthash ( |
official => 'Official', |
official => 'Official', |
unofficial => 'Unofficial', |
unofficial => 'Unofficial', |
community => 'Communities', |
community => 'Communities', |
|
textbook => 'Textbook', |
|
placement => 'Placement Tests', |
norequest => 'Not allowed', |
norequest => 'Not allowed', |
approval => 'Approval by Dom. Coord.', |
approval => 'Approval by Dom. Coord.', |
validate => 'With validation', |
validate => 'With validation', |
Line 463 sub courserequest_display {
|
Line 622 sub courserequest_display {
|
return %titles; |
return %titles; |
} |
} |
|
|
|
sub requestauthor_titles { |
|
my %titles = &Apache::lonlocal::texthash ( |
|
norequest => 'Not allowed', |
|
approval => 'Approval by Dom. Coord.', |
|
automatic => 'Automatic approval', |
|
); |
|
return %titles; |
|
|
|
} |
|
|
|
sub requestauthor_display { |
|
my %titles = &Apache::lonlocal::texthash ( |
|
approval => 'Yes, need approval', |
|
automatic => 'Yes, automatic approval', |
|
norequest => 'No', |
|
); |
|
return %titles; |
|
} |
|
|
|
sub requestchange_display { |
|
my %titles = &Apache::lonlocal::texthash ( |
|
approval => "availability set to 'on' (approval required)", |
|
automatic => "availability set to 'on' (automatic approval)", |
|
norequest => "availability set to 'off'", |
|
); |
|
return %titles; |
|
} |
|
|
|
sub curr_requestauthor { |
|
my ($uname,$udom,$isadv,$inststatuses,$domconfig) = @_; |
|
return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH')); |
|
if ($uname eq '' || $udom eq '') { |
|
$uname = $env{'user.name'}; |
|
$udom = $env{'user.domain'}; |
|
$isadv = $env{'user.adv'}; |
|
} |
|
my (%userenv,%settings,$val); |
|
my @options = ('automatic','approval'); |
|
%userenv = |
|
&Apache::lonnet::userenvironment($udom,$uname,'requestauthor','inststatus'); |
|
if ($userenv{'requestauthor'}) { |
|
$val = $userenv{'requestauthor'}; |
|
@{$inststatuses} = ('_custom_'); |
|
} else { |
|
my %alltasks; |
|
if (ref($domconfig->{'requestauthor'}) eq 'HASH') { |
|
%settings = %{$domconfig->{'requestauthor'}}; |
|
if (($isadv) && ($settings{'_LC_adv'} ne '')) { |
|
$val = $settings{'_LC_adv'}; |
|
@{$inststatuses} = ('_LC_adv_'); |
|
} else { |
|
if ($userenv{'inststatus'} ne '') { |
|
@{$inststatuses} = split(',',$userenv{'inststatus'}); |
|
} else { |
|
@{$inststatuses} = ('default'); |
|
} |
|
foreach my $status (@{$inststatuses}) { |
|
if (exists($settings{$status})) { |
|
my $value = $settings{$status}; |
|
next unless ($value); |
|
unless (exists($alltasks{$value})) { |
|
if (ref($alltasks{$value}) eq 'ARRAY') { |
|
unless(grep(/^\Q$status\E$/,@{$alltasks{$value}})) { |
|
push(@{$alltasks{$value}},$status); |
|
} |
|
} else { |
|
@{$alltasks{$value}} = ($status); |
|
} |
|
} |
|
} |
|
} |
|
foreach my $option (@options) { |
|
if ($alltasks{$option}) { |
|
$val = $option; |
|
last; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
return $val; |
|
} |
|
|
# =================================================================== Phase one |
# =================================================================== Phase one |
|
|
sub print_username_entry_form { |
sub print_username_entry_form { |
my ($r,$context,$response,$srch,$forcenewuser,$crstype) = @_; |
my ($r,$context,$response,$srch,$forcenewuser,$crstype,$brcrum) = @_; |
my $defdom=$env{'request.role.domain'}; |
my $defdom=$env{'request.role.domain'}; |
my $formtoset = 'crtuser'; |
my $formtoset = 'crtuser'; |
if (exists($env{'form.startrolename'})) { |
if (exists($env{'form.startrolename'})) { |
Line 485 sub print_username_entry_form {
|
Line 727 sub print_username_entry_form {
|
'// ]]>'."\n". |
'// ]]>'."\n". |
'</script>'."\n"; |
'</script>'."\n"; |
|
|
my %loaditems = ( |
my %existingroles=&Apache::lonuserutils::my_custom_roles($crstype); |
'onload' => "javascript:setFormElements(document.$formtoset)", |
if (($env{'form.action'} eq 'custom') && (keys(%existingroles) > 0) |
); |
&& (&Apache::lonnet::allowed('mcr','/'))) { |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
$jscript .= &customrole_javascript(); |
my $start_page = |
|
&Apache::loncommon::start_page('User Management', |
|
$jscript,{'add_entries' => \%loaditems,}); |
|
if ($env{'form.action'} eq 'custom') { |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage(document.crtuser)", |
|
text=>"Pick custom role",}); |
|
} else { |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage(document.crtuser)", |
|
text=>$breadcrumb_text{'search'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
} |
} |
my $helpitem = 'Course_Change_Privileges'; |
my $helpitem = 'Course_Change_Privileges'; |
if ($env{'form.action'} eq 'custom') { |
if ($env{'form.action'} eq 'custom') { |
Line 508 sub print_username_entry_form {
|
Line 738 sub print_username_entry_form {
|
} elsif ($env{'form.action'} eq 'singlestudent') { |
} elsif ($env{'form.action'} eq 'singlestudent') { |
$helpitem = 'Course_Add_Student'; |
$helpitem = 'Course_Add_Student'; |
} |
} |
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management', |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
$helpitem); |
if ($env{'form.action'} eq 'custom') { |
my %existingroles=&Apache::lonuserutils::my_custom_roles(); |
push(@{$brcrum}, |
my $choice=&Apache::loncommon::select_form('make new role','rolename', |
{href=>"javascript:backPage(document.crtuser)", |
('make new role' => 'Generate new role ...',%existingroles)); |
text=>"Pick custom role", |
|
help => $helpitem,} |
|
); |
|
} else { |
|
push (@{$brcrum}, |
|
{href => "javascript:backPage(document.crtuser)", |
|
text => $breadcrumb_text{'search'}, |
|
help => $helpitem, |
|
faq => 282, |
|
bug => 'Instructor Interface',} |
|
); |
|
} |
|
my %loaditems = ( |
|
'onload' => "javascript:setFormElements(document.$formtoset)", |
|
); |
|
my $args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'User Management', |
|
add_entries => \%loaditems,}; |
|
$r->print(&Apache::loncommon::start_page('User Management',$jscript,$args)); |
|
|
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'srst' => 'Search for a user and enroll as a student', |
'srst' => 'Search for a user and enroll as a student', |
'srme' => 'Search for a user and enroll as a member', |
'srme' => 'Search for a user and enroll as a member', |
|
|
'srad' => 'Search for a user and modify/add user information or roles', |
'srad' => 'Search for a user and modify/add user information or roles', |
'usr' => "Username", |
'usr' => "Username", |
'dom' => "Domain", |
'dom' => "Domain", |
'ecrp' => "Edit Custom Role Privileges", |
'ecrp' => "Define or Edit Custom Role", |
'nr' => "Name of Role", |
'nr' => "role name", |
'cre' => "Next", |
'cre' => "Next", |
); |
); |
$r->print($start_page."\n".$crumbs); |
|
if ($env{'form.action'} eq 'custom') { |
if ($env{'form.action'} eq 'custom') { |
if (&Apache::lonnet::allowed('mcr','/')) { |
if (&Apache::lonnet::allowed('mcr','/')) { |
$r->print(<<ENDCUSTOM); |
my $newroletext = &mt('Define new custom role:'); |
<form action="/adm/createuser" method="post" name="docustom"> |
$r->print('<form action="/adm/createuser" method="post" name="docustom">'. |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'. |
<input type="hidden" name="phase" value="selected_custom_edit" /> |
'<input type="hidden" name="phase" value="selected_custom_edit" />'. |
<h3>$lt{'ecrp'}</h3> |
'<h3>'.$lt{'ecrp'}.'</h3>'. |
$choice $lt{'nr'}: <input type="text" size="15" name="newrolename" /><br /> |
&Apache::loncommon::start_data_table(). |
<input name="customeditor" type="submit" value="$lt{'cre'}" /> |
&Apache::loncommon::start_data_table_row(). |
</form> |
'<td>'); |
ENDCUSTOM |
if (keys(%existingroles) > 0) { |
|
$r->print('<br /><label><input type="radio" name="customroleaction" value="new" checked="checked" onclick="setCustomFields();" /><b>'.$newroletext.'</b></label>'); |
|
} else { |
|
$r->print('<br /><input type="hidden" name="customroleaction" value="new" /><b>'.$newroletext.'</b>'); |
|
} |
|
$r->print('</td><td align="center">'.$lt{'nr'}.'<br /><input type="text" size="15" name="newrolename" onfocus="setCustomAction('."'new'".');" /></td>'. |
|
&Apache::loncommon::end_data_table_row()); |
|
if (keys(%existingroles) > 0) { |
|
$r->print(&Apache::loncommon::start_data_table_row().'<td><br />'. |
|
'<label><input type="radio" name="customroleaction" value="edit" onclick="setCustomFields();"/><b>'. |
|
&mt('View/Modify existing role:').'</b></label></td>'. |
|
'<td align="center"><br />'. |
|
'<select name="rolename" onchange="setCustomAction('."'edit'".');">'. |
|
'<option value="" selected="selected">'. |
|
&mt('Select')); |
|
foreach my $role (sort(keys(%existingroles))) { |
|
$r->print('<option value="'.$role.'">'.$role.'</option>'); |
|
} |
|
$r->print('</select>'. |
|
'</td>'. |
|
&Apache::loncommon::end_data_table_row()); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table().'<p>'. |
|
'<input name="customeditor" type="submit" value="'. |
|
$lt{'cre'}.'" /></p>'. |
|
'</form>'); |
} |
} |
} else { |
} else { |
my $actiontext = $lt{'srad'}; |
my $actiontext = $lt{'srad'}; |
Line 548 ENDCUSTOM
|
Line 821 ENDCUSTOM
|
} |
} |
$r->print("<h3>$actiontext</h3>"); |
$r->print("<h3>$actiontext</h3>"); |
if ($env{'form.origform'} ne 'crtusername') { |
if ($env{'form.origform'} ne 'crtusername') { |
$r->print("\n".$response); |
if ($response) { |
|
$r->print("\n<div>$response</div>". |
|
'<br clear="all" />'); |
|
} |
} |
} |
$r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype)); |
$r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype)); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
} |
|
|
|
sub customrole_javascript { |
|
my $js = <<"END"; |
|
<script type="text/javascript"> |
|
// <![CDATA[ |
|
|
|
function setCustomFields() { |
|
if (document.docustom.customroleaction.length > 0) { |
|
for (var i=0; i<document.docustom.customroleaction.length; i++) { |
|
if (document.docustom.customroleaction[i].checked) { |
|
if (document.docustom.customroleaction[i].value == 'new') { |
|
document.docustom.rolename.selectedIndex = 0; |
|
} else { |
|
document.docustom.newrolename.value = ''; |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
|
function setCustomAction(caller) { |
|
if (document.docustom.customroleaction.length > 0) { |
|
for (var i=0; i<document.docustom.customroleaction.length; i++) { |
|
if (document.docustom.customroleaction[i].value == caller) { |
|
document.docustom.customroleaction[i].checked = true; |
|
} |
|
} |
|
} |
|
setCustomFields(); |
|
return; |
|
} |
|
|
|
// ]]> |
|
</script> |
|
END |
|
return $js; |
} |
} |
|
|
sub entry_form { |
sub entry_form { |
my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_; |
my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_; |
my %domconf = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom); |
|
my ($usertype,$inexact); |
my ($usertype,$inexact); |
if (ref($srch) eq 'HASH') { |
if (ref($srch) eq 'HASH') { |
if (($srch->{'srchin'} eq 'dom') && |
if (($srch->{'srchin'} eq 'dom') && |
Line 565 sub entry_form {
|
Line 877 sub entry_form {
|
($srch->{'srchtype'} eq 'exact') && |
($srch->{'srchtype'} eq 'exact') && |
($srch->{'srchdomain'} ne '') && |
($srch->{'srchdomain'} ne '') && |
($srch->{'srchterm'} ne '')) { |
($srch->{'srchterm'} ne '')) { |
|
my (%curr_rules,%got_rules); |
my ($rules,$ruleorder) = |
my ($rules,$ruleorder) = |
&Apache::lonnet::inst_userrules($srch->{'srchdomain'},'username'); |
&Apache::lonnet::inst_userrules($srch->{'srchdomain'},'username'); |
$usertype = &Apache::lonuserutils::check_usertype($srch->{'srchdomain'},$srch->{'srchterm'},$rules); |
$usertype = &Apache::lonuserutils::check_usertype($srch->{'srchdomain'},$srch->{'srchterm'},$rules,\%curr_rules,\%got_rules); |
} else { |
} else { |
$inexact = 1; |
$inexact = 1; |
} |
} |
} |
} |
my $cancreate = |
my $cancreate = |
&Apache::lonuserutils::can_create_user($dom,$context,$usertype); |
&Apache::lonuserutils::can_create_user($dom,$context,$usertype); |
my $userpicker = |
my ($userpicker,$cansearch) = |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
'document.crtuser',$cancreate,$usertype); |
'document.crtuser',$cancreate,$usertype); |
my $srchbutton = &mt('Search'); |
my $srchbutton = &mt('Search'); |
Line 583 sub entry_form {
|
Line 896 sub entry_form {
|
} elsif ($cancreate && $responsemsg ne '' && $inexact) { |
} elsif ($cancreate && $responsemsg ne '' && $inexact) { |
$srchbutton = &mt('Search or Add New User'); |
$srchbutton = &mt('Search or Add New User'); |
} |
} |
my $output = <<"ENDBLOCK"; |
my $output; |
|
if ($cansearch) { |
|
$output = <<"ENDBLOCK"; |
<form action="/adm/createuser" method="post" name="crtuser"> |
<form action="/adm/createuser" method="post" name="crtuser"> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="phase" value="get_user_info" /> |
<input type="hidden" name="phase" value="get_user_info" /> |
Line 591 $userpicker
|
Line 906 $userpicker
|
<input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" /> |
<input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" /> |
</form> |
</form> |
ENDBLOCK |
ENDBLOCK |
|
} else { |
|
$output = '<p>'.$userpicker.'</p>'; |
|
} |
if ($env{'form.phase'} eq '') { |
if ($env{'form.phase'} eq '') { |
my $defdom=$env{'request.role.domain'}; |
my $defdom=$env{'request.role.domain'}; |
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain'); |
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain'); |
Line 608 ENDBLOCK
|
Line 926 ENDBLOCK
|
); |
); |
my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain'); |
my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain'); |
my ($title,$buttontext,$showresponse); |
my ($title,$buttontext,$showresponse); |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$title = $lt{'enrm'}; |
$title = $lt{'enrm'}; |
} else { |
} else { |
Line 661 sub user_modification_js {
|
Line 979 sub user_modification_js {
|
<script type="text/javascript" language="Javascript"> |
<script type="text/javascript" language="Javascript"> |
// <![CDATA[ |
// <![CDATA[ |
|
|
function pclose() { |
|
parmwin=window.open("/adm/rat/empty.html","LONCAPAparms", |
|
"height=350,width=350,scrollbars=no,menubar=no"); |
|
parmwin.close(); |
|
} |
|
|
|
$pjump_def |
$pjump_def |
$dc_setcourse_code |
$dc_setcourse_code |
|
|
function dateset() { |
function dateset() { |
eval("document.cu."+document.cu.pres_marker.value+ |
eval("document.cu."+document.cu.pres_marker.value+ |
".value=document.cu.pres_value.value"); |
".value=document.cu.pres_value.value"); |
pclose(); |
modalWindow.close(); |
} |
} |
|
|
$nondc_setsection_code |
$nondc_setsection_code |
Line 684 END
|
Line 996 END
|
|
|
# =================================================================== Phase two |
# =================================================================== Phase two |
sub print_user_selection_page { |
sub print_user_selection_page { |
my ($r,$response,$srch,$srch_results,$srcharray,$context,$opener_elements,$crstype) = @_; |
my ($r,$response,$srch,$srch_results,$srcharray,$context,$opener_elements,$crstype,$brcrum) = @_; |
my @fields = ('username','domain','lastname','firstname','permanentemail'); |
my @fields = ('username','domain','lastname','firstname','permanentemail'); |
my $sortby = $env{'form.sortby'}; |
my $sortby = $env{'form.sortby'}; |
|
|
Line 725 ENDSCRIPT
|
Line 1037 ENDSCRIPT
|
if ($context eq 'requestcrs') { |
if ($context eq 'requestcrs') { |
$r->print('<div>'); |
$r->print('<div>'); |
} else { |
} else { |
$r->print(&Apache::loncommon::start_page('User Management',$jscript)); |
|
|
|
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
&Apache::lonhtmlcommon::add_breadcrumb |
my $helpitem; |
({href=>"javascript:backPage(document.usersrchform,'','')", |
if ($env{'form.action'} eq 'singleuser') { |
text=>$breadcrumb_text{'search'}, |
$helpitem = 'Course_Change_Privileges'; |
faq=>282,bug=>'Instructor Interface',}, |
} elsif ($env{'form.action'} eq 'singlestudent') { |
{href=>"javascript:backPage(document.usersrchform,'get_user_info','select')", |
$helpitem = 'Course_Add_Student'; |
text=>$breadcrumb_text{'userpicked'}, |
} |
faq=>282,bug=>'Instructor Interface',}); |
push (@{$brcrum}, |
|
{href => "javascript:backPage(document.usersrchform,'','')", |
|
text => $breadcrumb_text{'search'}, |
|
faq => 282, |
|
bug => 'Instructor Interface',}, |
|
{href => "javascript:backPage(document.usersrchform,'get_user_info','select')", |
|
text => $breadcrumb_text{'userpicked'}, |
|
faq => 282, |
|
bug => 'Instructor Interface', |
|
help => $helpitem} |
|
); |
|
$r->print(&Apache::loncommon::start_page('User Management',$jscript,{bread_crumbs => $brcrum})); |
if ($env{'form.action'} eq 'singleuser') { |
if ($env{'form.action'} eq 'singleuser') { |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Change_Privileges')); |
|
$r->print("<b>$lt{'usrch'}</b><br />"); |
$r->print("<b>$lt{'usrch'}</b><br />"); |
$r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype)); |
$r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context,undef,$crstype)); |
$r->print('<h3>'.$lt{'usel'}.'</h3>'); |
$r->print('<h3>'.$lt{'usel'}.'</h3>'); |
} elsif ($env{'form.action'} eq 'singlestudent') { |
} elsif ($env{'form.action'} eq 'singlestudent') { |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Add_Student')); |
|
$r->print($jscript."<b>"); |
$r->print($jscript."<b>"); |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$r->print($lt{'memsrch'}); |
$r->print($lt{'memsrch'}); |
Line 761 ENDSCRIPT
|
Line 1078 ENDSCRIPT
|
$r->print('</h3>'); |
$r->print('</h3>'); |
} |
} |
} |
} |
$r->print('<form name="usersrchform" method="post">'. |
$r->print('<form name="usersrchform" method="post" action="">'. |
&Apache::loncommon::start_data_table()."\n". |
&Apache::loncommon::start_data_table()."\n". |
&Apache::loncommon::start_data_table_header_row()."\n". |
&Apache::loncommon::start_data_table_header_row()."\n". |
' <th> </th>'."\n"); |
' <th> </th>'."\n"); |
Line 820 ENDSCRIPT
|
Line 1137 ENDSCRIPT
|
if ($context eq 'requestcrs') { |
if ($context eq 'requestcrs') { |
$r->print($opener_elements.'</form></div>'); |
$r->print($opener_elements.'</form></div>'); |
} else { |
} else { |
$r->print($response.'</form>'.&Apache::loncommon::end_page()); |
$r->print($response.'</form>'); |
} |
} |
} |
} |
|
|
sub print_user_query_page { |
sub print_user_query_page { |
my ($r,$caller) = @_; |
my ($r,$caller,$brcrum) = @_; |
# FIXME - this is for a network-wide name search (similar to catalog search) |
# FIXME - this is for a network-wide name search (similar to catalog search) |
# To use frames with similar behavior to catalog/portfolio search. |
# To use frames with similar behavior to catalog/portfolio search. |
# To be implemented. |
# To be implemented. |
Line 833 sub print_user_query_page {
|
Line 1150 sub print_user_query_page {
|
} |
} |
|
|
sub print_user_modification_page { |
sub print_user_modification_page { |
my ($r,$ccuname,$ccdomain,$srch,$response,$context,$permission,$crstype) = @_; |
my ($r,$ccuname,$ccdomain,$srch,$response,$context,$permission,$crstype, |
|
$brcrum,$showcredits) = @_; |
if (($ccuname eq '') || ($ccdomain eq '')) { |
if (($ccuname eq '') || ($ccdomain eq '')) { |
my $usermsg = &mt('No username and/or domain provided.'); |
my $usermsg = &mt('No username and/or domain provided.'); |
$env{'form.phase'} = ''; |
$env{'form.phase'} = ''; |
&print_username_entry_form($r,$context,$usermsg,'','',$crstype); |
&print_username_entry_form($r,$context,$usermsg,'','',$crstype,$brcrum); |
return; |
return; |
} |
} |
my ($form,$formname); |
my ($form,$formname); |
Line 856 sub print_user_modification_page {
|
Line 1174 sub print_user_modification_page {
|
my ($rules,$ruleorder) = |
my ($rules,$ruleorder) = |
&Apache::lonnet::inst_userrules($ccdomain,'username'); |
&Apache::lonnet::inst_userrules($ccdomain,'username'); |
$usertype = |
$usertype = |
&Apache::lonuserutils::check_usertype($ccdomain,$ccuname,$rules); |
&Apache::lonuserutils::check_usertype($ccdomain,$ccuname,$rules, |
|
\%curr_rules,\%got_rules); |
my $cancreate = |
my $cancreate = |
&Apache::lonuserutils::can_create_user($ccdomain,$context, |
&Apache::lonuserutils::can_create_user($ccdomain,$context, |
$usertype); |
$usertype); |
Line 868 sub print_user_modification_page {
|
Line 1187 sub print_user_modification_page {
|
); |
); |
my $response; |
my $response; |
if ($env{'form.origform'} eq 'crtusername') { |
if ($env{'form.origform'} eq 'crtusername') { |
$response = '<span class="LC_warning">'.&mt('No match was found for the username ([_1]) in LON-CAPA domain: [_2]',$ccuname,$ccdomain). |
$response = '<span class="LC_warning">'. |
|
&mt('No match found for the username [_1] in LON-CAPA domain: [_2]', |
|
'<b>'.$ccuname.'</b>',$ccdomain). |
'</span><br />'; |
'</span><br />'; |
} |
} |
$response .= '<p class="LC_warning">' |
$response .= '<p class="LC_warning">' |
Line 878 sub print_user_modification_page {
|
Line 1199 sub print_user_modification_page {
|
,'<a href="'.$helplink.'">','</a>') |
,'<a href="'.$helplink.'">','</a>') |
.'</p><br />'; |
.'</p><br />'; |
$env{'form.phase'} = ''; |
$env{'form.phase'} = ''; |
&print_username_entry_form($r,$context,$response,undef,undef,$crstype); |
&print_username_entry_form($r,$context,$response,undef,undef,$crstype,$brcrum); |
return; |
return; |
} |
} |
$newuser = 1; |
$newuser = 1; |
Line 902 sub print_user_modification_page {
|
Line 1223 sub print_user_modification_page {
|
'username'); |
'username'); |
} |
} |
$env{'form.phase'} = ''; |
$env{'form.phase'} = ''; |
&print_username_entry_form($r,$context,$userchkmsg,undef,undef,$crstype); |
&print_username_entry_form($r,$context,$userchkmsg,undef,undef,$crstype,$brcrum); |
return; |
return; |
} |
} |
} |
} |
Line 921 sub print_user_modification_page {
|
Line 1242 sub print_user_modification_page {
|
|
|
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
|
|
my $js = &validation_javascript($context,$ccdomain,$pjump_def, |
my $js = &validation_javascript($context,$ccdomain,$pjump_def,$crstype, |
$groupslist,$newuser,$formname,\%loaditem); |
$groupslist,$newuser,$formname,\%loaditem); |
my $args = {'add_entries' => \%loaditem}; |
|
if ($env{'form.popup'}) { |
|
$args->{'no_nav_bar'} = 1; |
|
} |
|
my $start_page = |
|
&Apache::loncommon::start_page('User Management',$js,$args); |
|
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage($form)", |
|
text=>$breadcrumb_text{'search'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
|
|
if ($env{'form.phase'} eq 'userpicked') { |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage($form,'get_user_info','select')", |
|
text=>$breadcrumb_text{'userpicked'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
} |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage($form,'$env{'form.phase'}','modify')", |
|
text=>$breadcrumb_text{'modify'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
my $helpitem = 'Course_Change_Privileges'; |
my $helpitem = 'Course_Change_Privileges'; |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
$helpitem = 'Course_Add_Student'; |
$helpitem = 'Course_Add_Student'; |
} |
} |
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management', |
push (@{$brcrum}, |
$helpitem); |
{href => "javascript:backPage($form)", |
|
text => $breadcrumb_text{'search'}, |
|
faq => 282, |
|
bug => 'Instructor Interface',}); |
|
if ($env{'form.phase'} eq 'userpicked') { |
|
push(@{$brcrum}, |
|
{href => "javascript:backPage($form,'get_user_info','select')", |
|
text => $breadcrumb_text{'userpicked'}, |
|
faq => 282, |
|
bug => 'Instructor Interface',}); |
|
} |
|
push(@{$brcrum}, |
|
{href => "javascript:backPage($form,'$env{'form.phase'}','modify')", |
|
text => $breadcrumb_text{'modify'}, |
|
faq => 282, |
|
bug => 'Instructor Interface', |
|
help => $helpitem}); |
|
my $args = {'add_entries' => \%loaditem, |
|
'bread_crumbs' => $brcrum, |
|
'bread_crumbs_component' => 'User Management'}; |
|
if ($env{'form.popup'}) { |
|
$args->{'no_nav_bar'} = 1; |
|
} |
|
my $start_page = |
|
&Apache::loncommon::start_page('User Management',$js,$args); |
|
|
my $forminfo =<<"ENDFORMINFO"; |
my $forminfo =<<"ENDFORMINFO"; |
<form action="/adm/createuser" method="post" name="$formname"> |
<form action="/adm/createuser" method="post" name="$formname"> |
Line 961 sub print_user_modification_page {
|
Line 1285 sub print_user_modification_page {
|
<input type="hidden" name="pres_type" value="" /> |
<input type="hidden" name="pres_type" value="" /> |
<input type="hidden" name="pres_marker" value="" /> |
<input type="hidden" name="pres_marker" value="" /> |
ENDFORMINFO |
ENDFORMINFO |
my %inccourses; |
my (%inccourses,$roledom,$defaultcredits); |
foreach my $key (keys(%env)) { |
if ($context eq 'course') { |
if ($key=~/^user\.priv\.cm\.\/($match_domain)\/($match_username)/) { |
$inccourses{$env{'request.course.id'}}=1; |
$inccourses{$1.'_'.$2}=1; |
$roledom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
if ($showcredits) { |
|
$defaultcredits = &Apache::lonuserutils::get_defaultcredits(); |
|
} |
|
} elsif ($context eq 'author') { |
|
$roledom = $env{'request.role.domain'}; |
|
} elsif ($context eq 'domain') { |
|
foreach my $key (keys(%env)) { |
|
$roledom = $env{'request.role.domain'}; |
|
if ($key=~/^user\.priv\.cm\.\/($roledom)\/($match_username)/) { |
|
$inccourses{$1.'_'.$2}=1; |
|
} |
|
} |
|
} else { |
|
foreach my $key (keys(%env)) { |
|
if ($key=~/^user\.priv\.cm\.\/($match_domain)\/($match_username)/) { |
|
$inccourses{$1.'_'.$2}=1; |
|
} |
} |
} |
} |
} |
|
my $title = ''; |
if ($newuser) { |
if ($newuser) { |
my $portfolioform; |
my ($portfolioform,$domroleform,$adhocroleform); |
if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) || |
if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) || |
(&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) { |
(&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) { |
# Current user has quota or user tools modification privileges |
# Current user has quota or user tools modification privileges |
$portfolioform = '<br />'.&portfolio_quota($ccuname,$ccdomain); |
$portfolioform = '<br />'.&user_quotas($ccuname,$ccdomain); |
|
} |
|
if ((&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) && |
|
($ccdomain eq $env{'request.role.domain'})) { |
|
$domroleform = '<br />'.&domainrole_req($ccuname,$ccdomain); |
|
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$adhocroleform = &domadhocroles($ccuname,$ccdomain); |
|
if ($adhocroleform) { |
|
$adhocroleform = '<br />'.$adhocroleform; |
|
} |
} |
} |
&initialize_authen_forms($ccdomain,$formname); |
&initialize_authen_forms($ccdomain,$formname); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'cnu' => 'Create New User', |
|
'ast' => 'as a student', |
|
'ame' => 'as a member', |
|
'ind' => 'in domain', |
|
'lg' => 'Login Data', |
'lg' => 'Login Data', |
'hs' => "Home Server", |
'hs' => "Home Server", |
); |
); |
$r->print(<<ENDTITLE); |
$r->print(<<ENDTITLE); |
$start_page |
$start_page |
$crumbs |
|
$response |
$response |
$forminfo |
$forminfo |
<script type="text/javascript" language="Javascript"> |
<script type="text/javascript" language="Javascript"> |
Line 994 $loginscript
|
Line 1341 $loginscript
|
// ]]> |
// ]]> |
</script> |
</script> |
<input type='hidden' name='makeuser' value='1' /> |
<input type='hidden' name='makeuser' value='1' /> |
<h2>$lt{'cnu'} "$ccuname" $lt{'ind'} $ccdomain |
|
ENDTITLE |
ENDTITLE |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$r->print(' ('.$lt{'ame'}.')'); |
$title = &mt('Create New User [_1] in domain [_2] as a member', |
|
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
} else { |
} else { |
$r->print(' ('.$lt{'ast'}.')'); |
$title = &mt('Create New User [_1] in domain [_2] as a student', |
|
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
} |
} |
|
} else { |
|
$title = &mt('Create New User [_1] in domain [_2]', |
|
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
} |
} |
$r->print('</h2>'."\n".'<div class="LC_left_float">'); |
$r->print('<h2>'.$title.'</h2>'."\n"); |
my $personal_table = |
$r->print('<div class="LC_left_float">'); |
&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
$r->print(&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
$inst_results{$ccuname.':'.$ccdomain}); |
$inst_results{$ccuname.':'.$ccdomain})); |
$r->print($personal_table); |
# Option to disable student/employee ID conflict checking not offerred for new users. |
my ($home_server_pick,$numlib) = |
my ($home_server_pick,$numlib) = |
&Apache::loncommon::home_server_form_item($ccdomain,'hserver', |
&Apache::loncommon::home_server_form_item($ccdomain,'hserver', |
'default','hide'); |
'default','hide'); |
Line 1020 $lt{'hs'}: $home_server_pick
|
Line 1371 $lt{'hs'}: $home_server_pick
|
$r->print($home_server_pick); |
$r->print($home_server_pick); |
} |
} |
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
$r->print('<br /><h3>'.&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'. |
$r->print('<br /><h3>'. |
|
&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'. |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&build_tools_display($ccuname,$ccdomain, |
&build_tools_display($ccuname,$ccdomain, |
'requestcourses'). |
'requestcourses'). |
Line 1084 ENDAUTH
|
Line 1436 ENDAUTH
|
} else { |
} else { |
$r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); |
$r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); |
} |
} |
$r->print($portfolioform); |
$r->print($portfolioform.$domroleform.$adhocroleform); |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
$r->print(&date_sections_select($context,$newuser,$formname, |
$r->print(&date_sections_select($context,$newuser,$formname, |
$permission)); |
$permission,$crstype,$ccuname, |
|
$ccdomain,$showcredits)); |
} |
} |
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
} else { # user already exists |
} else { # user already exists |
my %lt=&Apache::lonlocal::texthash( |
$r->print($start_page.$forminfo); |
'cup' => "Modify existing user: ", |
|
'ens' => "Enroll one student: ", |
|
'enm' => "Enroll one member: ", |
|
'id' => "in domain", |
|
); |
|
$r->print(<<ENDCHANGEUSER); |
|
$start_page |
|
$crumbs |
|
$forminfo |
|
<h2> |
|
ENDCHANGEUSER |
|
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$r->print($lt{'enm'}); |
$title = &mt('Enroll one member: [_1] in domain [_2]', |
|
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
} else { |
} else { |
$r->print($lt{'ens'}); |
$title = &mt('Enroll one student: [_1] in domain [_2]', |
|
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
} |
} |
} else { |
} else { |
$r->print($lt{'cup'}); |
$title = &mt('Modify existing user: [_1] in domain [_2]', |
} |
'"'.$ccuname.'"','"'.$ccdomain.'"'); |
$r->print(' "'.$ccuname.'" '.$lt{'id'}.' "'.$ccdomain.'"</h2>'. |
|
"\n".'<div class="LC_left_float">'); |
|
my ($personal_table,$showforceid) = |
|
&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
|
$inst_results{$ccuname.':'.$ccdomain}); |
|
$r->print($personal_table); |
|
if ($showforceid) { |
|
$r->print(&Apache::lonuserutils::forceid_change($context)); |
|
} |
} |
|
$r->print('<h2>'.$title.'</h2>'."\n"); |
|
$r->print('<div class="LC_left_float">'); |
|
$r->print(&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
|
$inst_results{$ccuname.':'.$ccdomain})); |
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
$r->print('<h3>'.&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'. |
$r->print('<br /><h3>'.&mt('User Can Request Creation of Courses/Communities in this Domain?').'</h3>'. |
&Apache::loncommon::start_data_table()); |
&Apache::loncommon::start_data_table()); |
if ($env{'request.role.domain'} eq $ccdomain) { |
if ($env{'request.role.domain'} eq $ccdomain) { |
$r->print(&build_tools_display($ccuname,$ccdomain,'requestcourses')); |
$r->print(&build_tools_display($ccuname,$ccdomain,'requestcourses')); |
Line 1133 ENDCHANGEUSER
|
Line 1473 ENDCHANGEUSER
|
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::loncommon::end_data_table()); |
} |
} |
$r->print('</div>'); |
$r->print('</div>'); |
my $user_auth_text = &user_authentication($ccuname,$ccdomain,$formname); |
my @order = ('auth','quota','tools','requestauthor','adhocroles'); |
my ($user_quota_text,$user_tools_text,$user_reqcrs_text); |
my %user_text; |
|
my ($isadv,$isauthor) = |
|
&Apache::lonnet::is_advanced_user($ccuname,$ccdomain); |
|
if ((!$isauthor) && |
|
(&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) |
|
&& ($env{'request.role.domain'} eq $ccdomain)) { |
|
$user_text{'requestauthor'} = &domainrole_req($ccuname,$ccdomain); |
|
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$user_text{'adhocroles'} = &domadhocroles($ccuname,$ccdomain); |
|
} |
|
$user_text{'auth'} = &user_authentication($ccuname,$ccdomain,$formname); |
if ((&Apache::lonnet::allowed('mpq',$ccdomain)) || |
if ((&Apache::lonnet::allowed('mpq',$ccdomain)) || |
(&Apache::lonnet::allowed('mut',$ccdomain))) { |
(&Apache::lonnet::allowed('mut',$ccdomain))) { |
# Current user has quota modification privileges |
# Current user has quota modification privileges |
$user_quota_text = &portfolio_quota($ccuname,$ccdomain); |
$user_text{'quota'} = &user_quotas($ccuname,$ccdomain); |
} |
} |
if (!&Apache::lonnet::allowed('mpq',$ccdomain)) { |
if (!&Apache::lonnet::allowed('mpq',$ccdomain)) { |
if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) { |
# Get the user's portfolio information |
|
my %portq = &Apache::lonnet::get('environment',['portfolioquota'], |
|
$ccdomain,$ccuname); |
|
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'dska' => "Disk space allocated to user's portfolio files", |
'dska' => "Disk quotas for user's portfolio and Authoring Space", |
'youd' => "You do not have privileges to modify the portfolio quota for this user.", |
'youd' => "You do not have privileges to modify the portfolio and/or Authoring Space quotas for this user.", |
'ichr' => "If a change is required, contact a domain coordinator for the domain", |
'ichr' => "If a change is required, contact a domain coordinator for the domain", |
); |
); |
$user_quota_text = <<ENDNOPORTPRIV; |
$user_text{'quota'} = <<ENDNOPORTPRIV; |
<h3>$lt{'dska'}</h3> |
<h3>$lt{'dska'}</h3> |
$lt{'youd'} $lt{'ichr'}: $ccdomain |
$lt{'youd'} $lt{'ichr'}: $ccdomain |
ENDNOPORTPRIV |
ENDNOPORTPRIV |
Line 1160 ENDNOPORTPRIV
|
Line 1508 ENDNOPORTPRIV
|
if (&Apache::lonnet::allowed('mut',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('mut',$env{'request.role.domain'})) { |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'utav' => "User Tools Availability", |
'utav' => "User Tools Availability", |
'yodo' => "You do not have privileges to modify Portfolio, Blog or Personal Information Page settings for this user.", |
'yodo' => "You do not have privileges to modify Portfolio, Blog, WebDAV, or Personal Information Page settings for this user.", |
'ifch' => "If a change is required, contact a domain coordinator for the domain", |
'ifch' => "If a change is required, contact a domain coordinator for the domain", |
); |
); |
$user_tools_text = <<ENDNOTOOLSPRIV; |
$user_text{'tools'} = <<ENDNOTOOLSPRIV; |
<h3>$lt{'utav'}</h3> |
<h3>$lt{'utav'}</h3> |
$lt{'yodo'} $lt{'ifch'}: $ccdomain |
$lt{'yodo'} $lt{'ifch'}: $ccdomain |
ENDNOTOOLSPRIV |
ENDNOTOOLSPRIV |
} |
} |
} |
} |
if ($user_auth_text ne '') { |
my $gotdiv = 0; |
$r->print('<div class="LC_left_float">'.$user_auth_text); |
foreach my $item (@order) { |
if ($user_quota_text ne '') { |
if ($user_text{$item} ne '') { |
$r->print($user_quota_text); |
unless ($gotdiv) { |
} |
$r->print('<div class="LC_left_float">'); |
if ($user_tools_text ne '') { |
$gotdiv = 1; |
$r->print($user_tools_text); |
} |
} |
$r->print('<br />'.$user_text{$item}); |
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&date_sections_select($context,$newuser,$formname)); |
|
} |
|
} elsif ($user_quota_text ne '') { |
|
$r->print('<div class="LC_left_float">'.$user_quota_text); |
|
if ($user_tools_text ne '') { |
|
$r->print($user_tools_text); |
|
} |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&date_sections_select($context,$newuser,$formname)); |
|
} |
|
} elsif ($user_tools_text ne '') { |
|
$r->print('<div class="LC_left_float">'.$user_tools_text); |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&date_sections_select($context,$newuser,$formname)); |
|
} |
|
} else { |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print('<div class="LC_left_float">'. |
|
&date_sections_select($context,$newuser,$formname)); |
|
} |
} |
} |
} |
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
if ($env{'form.action'} eq 'singlestudent') { |
|
unless ($gotdiv) { |
|
$r->print('<div class="LC_left_float">'); |
|
} |
|
my $credits; |
|
if ($showcredits) { |
|
$credits = &get_user_credits($ccuname,$ccdomain,$defaultcredits); |
|
if ($credits eq '') { |
|
$credits = $defaultcredits; |
|
} |
|
} |
|
$r->print(&date_sections_select($context,$newuser,$formname, |
|
$permission,$crstype,$ccuname, |
|
$ccdomain,$showcredits)); |
|
} |
|
if ($gotdiv) { |
|
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
|
} |
if ($env{'form.action'} ne 'singlestudent') { |
if ($env{'form.action'} ne 'singlestudent') { |
&display_existing_roles($r,$ccuname,$ccdomain,\%inccourses); |
&display_existing_roles($r,$ccuname,$ccdomain,\%inccourses,$context, |
|
$roledom,$crstype); |
} |
} |
} ## End of new user/old user logic |
} ## End of new user/old user logic |
|
|
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
my $btntxt; |
my $btntxt; |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
Line 1214 ENDNOTOOLSPRIV
|
Line 1559 ENDNOTOOLSPRIV
|
} |
} |
$r->print('<br /><input type="button" value="'.$btntxt.'" onclick="setSections(this.form)" />'."\n"); |
$r->print('<br /><input type="button" value="'.$btntxt.'" onclick="setSections(this.form)" />'."\n"); |
} else { |
} else { |
$r->print('<h3>'.&mt('Add Roles').'</h3>'); |
$r->print('<div class="LC_left_float">'. |
|
'<fieldset><legend>'.&mt('Add Roles').'</legend>'); |
my $addrolesdisplay = 0; |
my $addrolesdisplay = 0; |
if ($context eq 'domain' || $context eq 'author') { |
if ($context eq 'domain' || $context eq 'author') { |
$addrolesdisplay = &new_coauthor_roles($r,$ccuname,$ccdomain); |
$addrolesdisplay = &new_coauthor_roles($r,$ccuname,$ccdomain); |
} |
} |
if ($context eq 'domain') { |
if ($context eq 'domain') { |
my $add_domainroles = &new_domain_roles($r); |
my $add_domainroles = &new_domain_roles($r,$ccdomain); |
if (!$addrolesdisplay) { |
if (!$addrolesdisplay) { |
$addrolesdisplay = $add_domainroles; |
$addrolesdisplay = $add_domainroles; |
} |
} |
$r->print(&course_level_dc($env{'request.role.domain'},'Course')); |
$r->print(&course_level_dc($env{'request.role.domain'},$showcredits)); |
$r->print('<br /><input type="button" value="'.&mt('Save').'" onclick="setCourse()" />'."\n"); |
$r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'. |
|
'<br /><input type="button" value="'.&mt('Save').'" onclick="setCourse()" />'."\n"); |
} elsif ($context eq 'author') { |
} elsif ($context eq 'author') { |
if ($addrolesdisplay) { |
if ($addrolesdisplay) { |
$r->print('<br /><input type="button" value="'.&mt('Save').'"'); |
$r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'. |
|
'<br /><input type="button" value="'.&mt('Save').'"'); |
if ($newuser) { |
if ($newuser) { |
$r->print(' onclick="auth_check()" \>'."\n"); |
$r->print(' onclick="auth_check()" \>'."\n"); |
} else { |
} else { |
$r->print('onclick="this.form.submit()" \>'."\n"); |
$r->print('onclick="this.form.submit()" \>'."\n"); |
} |
} |
} else { |
} else { |
$r->print('<br /><a href="javascript:backPage(document.cu)">'. |
$r->print('</fieldset></div>'. |
|
'<div class="LC_clear_float_footer"></div>'. |
|
'<br /><a href="javascript:backPage(document.cu)">'. |
&mt('Back to previous page').'</a>'); |
&mt('Back to previous page').'</a>'); |
} |
} |
} else { |
} else { |
$r->print(&course_level_table(%inccourses)); |
$r->print(&course_level_table(\%inccourses,$showcredits,$defaultcredits)); |
$r->print('<br /><input type="button" value="'.&mt('Save').'" onclick="setSections(this.form)" />'."\n"); |
$r->print('</fieldset></div><div class="LC_clear_float_footer"></div>'. |
|
'<br /><input type="button" value="'.&mt('Save').'" onclick="setSections(this.form)" />'."\n"); |
} |
} |
} |
} |
$r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain'])); |
$r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain'])); |
$r->print('<input type="hidden" name="currstate" value="" />'); |
$r->print('<input type="hidden" name="currstate" value="" />'); |
$r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" />'); |
$r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" /></form><br /><br />'); |
$r->print("</form>".&Apache::loncommon::end_page()); |
|
return; |
return; |
} |
} |
|
|
Line 1270 sub singleuser_breadcrumb {
|
Line 1620 sub singleuser_breadcrumb {
|
} |
} |
|
|
sub date_sections_select { |
sub date_sections_select { |
my ($context,$newuser,$formname,$permission) = @_; |
my ($context,$newuser,$formname,$permission,$crstype,$ccuname,$ccdomain, |
|
$showcredits) = @_; |
|
my $credits; |
|
if ($showcredits) { |
|
my $defaultcredits = &Apache::lonuserutils::get_defaultcredits(); |
|
$credits = &get_user_credits($ccuname,$ccdomain,$defaultcredits); |
|
if ($credits eq '') { |
|
$credits = $defaultcredits; |
|
} |
|
} |
my $cid = $env{'request.course.id'}; |
my $cid = $env{'request.course.id'}; |
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity($cid); |
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity($cid); |
my $date_table = '<h3>'.&mt('Starting and Ending Dates').'</h3>'."\n". |
my $date_table = '<h3>'.&mt('Starting and Ending Dates').'</h3>'."\n". |
&Apache::lonuserutils::date_setting_table(undef,undef,$context, |
&Apache::lonuserutils::date_setting_table(undef,undef,$context, |
undef,$formname,$permission); |
undef,$formname,$permission); |
my $rowtitle = 'Section'; |
my $rowtitle = 'Section'; |
my $secbox = '<h3>'.&mt('Section').'</h3>'."\n". |
my $secbox = '<h3>'.&mt('Section and Credits').'</h3>'."\n". |
&Apache::lonuserutils::section_picker($cdom,$cnum,'st',$rowtitle, |
&Apache::lonuserutils::section_picker($cdom,$cnum,'st',$rowtitle, |
$permission); |
$permission,$context,'',$crstype, |
|
$showcredits,$credits); |
my $output = $date_table.$secbox; |
my $output = $date_table.$secbox; |
return $output; |
return $output; |
} |
} |
|
|
sub validation_javascript { |
sub validation_javascript { |
my ($context,$ccdomain,$pjump_def,$groupslist,$newuser,$formname, |
my ($context,$ccdomain,$pjump_def,$crstype,$groupslist,$newuser,$formname, |
$loaditem) = @_; |
$loaditem) = @_; |
my $dc_setcourse_code = ''; |
my $dc_setcourse_code = ''; |
my $nondc_setsection_code = ''; |
my $nondc_setsection_code = ''; |
Line 1302 sub validation_javascript {
|
Line 1662 sub validation_javascript {
|
if ($context eq 'course') { |
if ($context eq 'course') { |
$nondc_setsection_code = |
$nondc_setsection_code = |
&Apache::lonuserutils::setsections_javascript($formname,$groupslist, |
&Apache::lonuserutils::setsections_javascript($formname,$groupslist, |
undef,$checkauth); |
undef,$checkauth, |
|
$crstype); |
} |
} |
if ($checkauth) { |
if ($checkauth) { |
$nondc_setsection_code .= |
$nondc_setsection_code .= |
Line 1322 sub validation_javascript {
|
Line 1683 sub validation_javascript {
|
} |
} |
|
|
sub display_existing_roles { |
sub display_existing_roles { |
my ($r,$ccuname,$ccdomain,$inccourses) = @_; |
my ($r,$ccuname,$ccdomain,$inccourses,$context,$roledom,$crstype, |
my %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname); |
$showcredits) = @_; |
# Build up table of user roles to allow revocation and re-enabling of roles. |
my $now=time; |
my ($tmp) = keys(%rolesdump); |
my %lt=&Apache::lonlocal::texthash( |
if ($tmp !~ /^(con_lost|error)/i) { |
|
my $now=time; |
|
my %lt=&Apache::lonlocal::texthash( |
|
'rer' => "Existing Roles", |
'rer' => "Existing Roles", |
'rev' => "Revoke", |
'rev' => "Revoke", |
'del' => "Delete", |
'del' => "Delete", |
'ren' => "Re-Enable", |
'ren' => "Re-Enable", |
'rol' => "Role", |
'rol' => "Role", |
'ext' => "Extent", |
'ext' => "Extent", |
|
'crd' => "Credits", |
'sta' => "Start", |
'sta' => "Start", |
'end' => "End", |
'end' => "End", |
); |
); |
my (%roletext,%sortrole,%roleclass,%rolepriv); |
my (%rolesdump,%roletext,%sortrole,%roleclass,%rolepriv); |
foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]); |
if ($context eq 'course' || $context eq 'author') { |
my $b1=join('_',(split('_',$b))[1,0]); |
my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype); |
return $a1 cmp $b1; |
my %roleshash = |
} keys(%rolesdump)) { |
&Apache::lonnet::get_my_roles($ccuname,$ccdomain,'userroles', |
next if ($area =~ /^rolesdef/); |
['active','previous','future'],\@roles,$roledom,1); |
my $envkey=$area; |
foreach my $key (keys(%roleshash)) { |
my $role = $rolesdump{$area}; |
my ($start,$end) = split(':',$roleshash{$key}); |
my $thisrole=$area; |
next if ($start eq '-1' || $end eq '-1'); |
$area =~ s/\_\w\w$//; |
my ($rnum,$rdom,$role,$sec) = split(':',$key); |
my ($role_code,$role_end_time,$role_start_time) = |
if ($context eq 'course') { |
split(/_/,$role); |
next unless (($rnum eq $env{'course.'.$env{'request.course.id'}.'.num'}) |
|
&& ($rdom eq $env{'course.'.$env{'request.course.id'}.'.domain'})); |
|
} elsif ($context eq 'author') { |
|
next unless (($rnum eq $env{'user.name'}) && ($rdom eq $env{'request.role.domain'})); |
|
} |
|
my ($newkey,$newvalue,$newrole); |
|
$newkey = '/'.$rdom.'/'.$rnum; |
|
if ($sec ne '') { |
|
$newkey .= '/'.$sec; |
|
} |
|
$newvalue = $role; |
|
if ($role =~ /^cr/) { |
|
$newrole = 'cr'; |
|
} else { |
|
$newrole = $role; |
|
} |
|
$newkey .= '_'.$newrole; |
|
if ($start ne '' && $end ne '') { |
|
$newvalue .= '_'.$end.'_'.$start; |
|
} elsif ($end ne '') { |
|
$newvalue .= '_'.$end; |
|
} |
|
$rolesdump{$newkey} = $newvalue; |
|
} |
|
} else { |
|
%rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname); |
|
} |
|
# Build up table of user roles to allow revocation and re-enabling of roles. |
|
my ($tmp) = keys(%rolesdump); |
|
return if ($tmp =~ /^(con_lost|error)/i); |
|
foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]); |
|
my $b1=join('_',(split('_',$b))[1,0]); |
|
return $a1 cmp $b1; |
|
} keys(%rolesdump)) { |
|
next if ($area =~ /^rolesdef/); |
|
my $envkey=$area; |
|
my $role = $rolesdump{$area}; |
|
my $thisrole=$area; |
|
$area =~ s/\_\w\w$//; |
|
my ($role_code,$role_end_time,$role_start_time) = |
|
split(/_/,$role); |
# Is this a custom role? Get role owner and title. |
# Is this a custom role? Get role owner and title. |
my ($croleudom,$croleuname,$croletitle)= |
my ($croleudom,$croleuname,$croletitle)= |
($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$}); |
($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$}); |
my $allowed=0; |
my $allowed=0; |
my $delallowed=0; |
my $delallowed=0; |
my $sortkey=$role_code; |
my $sortkey=$role_code; |
my $class='Unknown'; |
my $class='Unknown'; |
if ($area =~ m{^/($match_domain)/($match_courseid)} ) { |
my $credits=''; |
$class='Course'; |
if ($area =~ m{^/($match_domain)/($match_courseid)} ) { |
my ($coursedom,$coursedir) = ($1,$2); |
$class='Course'; |
$sortkey.="\0$coursedom"; |
my ($coursedom,$coursedir) = ($1,$2); |
# $1.'_'.$2 is the course id (eg. 103_12345abcef103l3). |
my $cid = $1.'_'.$2; |
my %coursedata= |
# $1.'_'.$2 is the course id (eg. 103_12345abcef103l3). |
&Apache::lonnet::coursedescription($1.'_'.$2); |
my %coursedata= |
my $carea; |
&Apache::lonnet::coursedescription($cid); |
if (defined($coursedata{'description'})) { |
if ($coursedir =~ /^$match_community$/) { |
$carea=$coursedata{'description'}. |
$class='Community'; |
'<br />'.&mt('Domain').': '.$coursedom.(' 'x8). |
} |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$coursedir,$coursedom); |
$sortkey.="\0$coursedom"; |
$sortkey.="\0".$coursedata{'description'}; |
my $carea; |
$class=$coursedata{'type'}; |
if (defined($coursedata{'description'})) { |
|
$carea=$coursedata{'description'}. |
|
'<br />'.&mt('Domain').': '.$coursedom.(' 'x8). |
|
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$coursedir,$coursedom); |
|
$sortkey.="\0".$coursedata{'description'}; |
|
} else { |
|
if ($class eq 'Community') { |
|
$carea=&mt('Unavailable community').': '.$area; |
|
$sortkey.="\0".&mt('Unavailable community').': '.$area; |
} else { |
} else { |
$carea=&mt('Unavailable course').': '.$area; |
$carea=&mt('Unavailable course').': '.$area; |
$sortkey.="\0".&mt('Unavailable course').': '.$area; |
$sortkey.="\0".&mt('Unavailable course').': '.$area; |
} |
} |
$sortkey.="\0$coursedir"; |
} |
$inccourses->{$1.'_'.$2}=1; |
$sortkey.="\0$coursedir"; |
if ((&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2)) || |
$inccourses->{$cid}=1; |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
if (($showcredits) && ($class eq 'Course') && ($role_code eq 'st')) { |
$allowed=1; |
my $defaultcredits = $coursedata{'internal.defaultcredits'}; |
} |
$credits = |
if ((&Apache::lonnet::allowed('dro',$1)) || |
&get_user_credits($ccuname,$ccdomain,$defaultcredits, |
(&Apache::lonnet::allowed('dro',$ccdomain))) { |
$coursedom,$coursedir); |
$delallowed=1; |
if ($credits eq '') { |
|
$credits = $defaultcredits; |
|
} |
|
} |
|
if ((&Apache::lonnet::allowed('c'.$role_code,$coursedom.'/'.$coursedir)) || |
|
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
|
$allowed=1; |
|
} |
|
unless ($allowed) { |
|
my $isowner = &Apache::lonuserutils::is_courseowner($cid,$coursedata{'internal.courseowner'}); |
|
if ($isowner) { |
|
if (($role_code eq 'co') && ($class eq 'Community')) { |
|
$allowed = 1; |
|
} elsif (($role_code eq 'cc') && ($class eq 'Course')) { |
|
$allowed = 1; |
|
} |
} |
} |
|
} |
|
if ((&Apache::lonnet::allowed('dro',$coursedom)) || |
|
(&Apache::lonnet::allowed('dro',$ccdomain))) { |
|
$delallowed=1; |
|
} |
# - custom role. Needs more info, too |
# - custom role. Needs more info, too |
if ($croletitle) { |
if ($croletitle) { |
if (&Apache::lonnet::allowed('ccr',$1.'/'.$2)) { |
if (&Apache::lonnet::allowed('ccr',$coursedom.'/'.$coursedir)) { |
$allowed=1; |
$allowed=1; |
$thisrole.='.'.$role_code; |
$thisrole.='.'.$role_code; |
} |
|
} |
} |
# Compute the background color based on $area |
} |
if ($area=~m{^/($match_domain)/($match_courseid)/(\w+)}) { |
if ($area=~m{^/($match_domain)/($match_courseid)/(\w+)}) { |
$carea.='<br />Section: '.$3; |
$carea.='<br />'.&mt('Section: [_1]',$3); |
$sortkey.="\0$3"; |
$sortkey.="\0$3"; |
if (!$allowed) { |
if (!$allowed) { |
if ($env{'request.course.sec'} eq $3) { |
if ($env{'request.course.sec'} eq $3) { |
if (&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2.'/'.$3)) { |
if (&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2.'/'.$3)) { |
$allowed = 1; |
$allowed = 1; |
} |
|
} |
} |
} |
} |
} |
} |
$area=$carea; |
} |
} else { |
$area=$carea; |
$sortkey.="\0".$area; |
} else { |
# Determine if current user is able to revoke privileges |
$sortkey.="\0".$area; |
if ($area=~m{^/($match_domain)/}) { |
# Determine if current user is able to revoke privileges |
if ((&Apache::lonnet::allowed('c'.$role_code,$1)) || |
if ($area=~m{^/($match_domain)/}) { |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
if ((&Apache::lonnet::allowed('c'.$role_code,$1)) || |
$allowed=1; |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
} |
$allowed=1; |
if (((&Apache::lonnet::allowed('dro',$1)) || |
|
(&Apache::lonnet::allowed('dro',$ccdomain))) && |
|
($role_code ne 'dc')) { |
|
$delallowed=1; |
|
} |
|
} else { |
|
if (&Apache::lonnet::allowed('c'.$role_code,'/')) { |
|
$allowed=1; |
|
} |
|
} |
} |
if ($role_code eq 'ca' || $role_code eq 'au') { |
if (((&Apache::lonnet::allowed('dro',$1)) || |
$class='Construction Space'; |
(&Apache::lonnet::allowed('dro',$ccdomain))) && |
} elsif ($role_code eq 'su') { |
($role_code ne 'dc')) { |
$class='System'; |
$delallowed=1; |
} else { |
|
$class='Domain'; |
|
} |
} |
} |
} else { |
if (($role_code eq 'ca') || ($role_code eq 'aa')) { |
if (&Apache::lonnet::allowed('c'.$role_code,'/')) { |
$area=~m{/($match_domain)/($match_username)}; |
|
if (&Apache::lonuserutils::authorpriv($2,$1)) { |
|
$allowed=1; |
$allowed=1; |
} else { |
|
$allowed=0; |
|
} |
} |
} |
} |
my $row = ''; |
if ($role_code eq 'ca' || $role_code eq 'au' || $role_code eq 'aa') { |
$row.= '<td>'; |
$class='Authoring Space'; |
my $active=1; |
} elsif ($role_code eq 'su') { |
$active=0 if (($role_end_time) && ($now>$role_end_time)); |
$class='System'; |
if (($active) && ($allowed)) { |
} else { |
$row.= '<input type="checkbox" name="rev:'.$thisrole.'" />'; |
$class='Domain'; |
} else { |
} |
if ($active) { |
} |
$row.=' '; |
if (($role_code eq 'ca') || ($role_code eq 'aa')) { |
} else { |
$area=~m{/($match_domain)/($match_username)}; |
$row.=&mt('expired or revoked'); |
if (&Apache::lonuserutils::authorpriv($2,$1)) { |
} |
$allowed=1; |
} |
} else { |
$row.='</td><td>'; |
$allowed=0; |
if ($allowed && !$active) { |
} |
$row.= '<input type="checkbox" name="ren:'.$thisrole.'" />'; |
} |
} else { |
my $row = ''; |
$row.=' '; |
$row.= '<td>'; |
} |
my $active=1; |
$row.='</td><td>'; |
$active=0 if (($role_end_time) && ($now>$role_end_time)); |
if ($delallowed) { |
if (($active) && ($allowed)) { |
$row.= '<input type="checkbox" name="del:'.$thisrole.'" />'; |
$row.= '<input type="checkbox" name="rev:'.$thisrole.'" />'; |
} else { |
} else { |
$row.=' '; |
if ($active) { |
} |
$row.=' '; |
my $plaintext=''; |
} else { |
if (!$croletitle) { |
$row.=&mt('expired or revoked'); |
$plaintext=&Apache::lonnet::plaintext($role_code,$class) |
} |
} else { |
} |
$plaintext= |
$row.='</td><td>'; |
"Customrole '$croletitle'<br />defined by $croleuname\@$croleudom"; |
if ($allowed && !$active) { |
} |
$row.= '<input type="checkbox" name="ren:'.$thisrole.'" />'; |
$row.= '</td><td>'.$plaintext. |
} else { |
'</td><td>'.$area. |
$row.=' '; |
'</td><td>'.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time) |
} |
: ' ' ). |
$row.='</td><td>'; |
'</td><td>'.($role_end_time ?&Apache::lonlocal::locallocaltime($role_end_time) |
if ($delallowed) { |
: ' ' ) |
$row.= '<input type="checkbox" name="del:'.$thisrole.'" />'; |
."</td>"; |
} else { |
$sortrole{$sortkey}=$envkey; |
$row.=' '; |
$roletext{$envkey}=$row; |
} |
$roleclass{$envkey}=$class; |
my $plaintext=''; |
$rolepriv{$envkey}=$allowed; |
if (!$croletitle) { |
#$r->print($row); |
$plaintext=&Apache::lonnet::plaintext($role_code,$class); |
} # end of foreach (table building loop) |
if (($showcredits) && ($credits ne '')) { |
my $rolesdisplay = 0; |
$plaintext .= '<br/ ><span class="LC_nobreak">'. |
my %output = (); |
'<span class="LC_fontsize_small">'. |
foreach my $type ('Construction Space','Course','Community','Domain','System','Unknown') { |
&mt('Credits: [_1]',$credits). |
$output{$type} = ''; |
'</span></span>'; |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
} |
if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) { |
} else { |
$output{$type}.= |
$plaintext= |
&Apache::loncommon::start_data_table_row(). |
&mt('Custom role [_1][_2]defined by [_3]', |
$roletext{$sortrole{$which}}. |
'"'.$croletitle.'"', |
&Apache::loncommon::end_data_table_row(); |
'<br />', |
} |
$croleuname.':'.$croleudom); |
} |
} |
unless($output{$type} eq '') { |
$row.= '</td><td>'.$plaintext. |
$output{$type} = '<tr class="LC_info_row">'. |
'</td><td>'.$area. |
"<td align='center' colspan='7'>".&mt($type)."</td></tr>". |
'</td><td>'.($role_start_time?&Apache::lonlocal::locallocaltime($role_start_time) |
$output{$type}; |
: ' ' ). |
$rolesdisplay = 1; |
'</td><td>'.($role_end_time ?&Apache::lonlocal::locallocaltime($role_end_time) |
} |
: ' ' ) |
} |
."</td>"; |
if ($rolesdisplay == 1) { |
$sortrole{$sortkey}=$envkey; |
my $contextrole=''; |
$roletext{$envkey}=$row; |
if ($env{'request.course.id'}) { |
$roleclass{$envkey}=$class; |
my $crstype = &Apache::loncommon::course_type(); |
$rolepriv{$envkey}=$allowed; |
$contextrole = "Existing Roles in this $crstype"; |
} # end of foreach (table building loop) |
} elsif ($env{'request.role'} =~ /^au\./) { |
|
$contextrole = 'Existing Co-Author Roles in your Construction Space'; |
my $rolesdisplay = 0; |
} else { |
my %output = (); |
$contextrole = 'Existing Roles in this Domain'; |
foreach my $type ('Authoring Space','Course','Community','Domain','System','Unknown') { |
} |
$output{$type} = ''; |
$r->print(' |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
<h3>'.$lt{'rer'}.'</h3>'. |
if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) { |
'<div>'.&mt($contextrole).'</div>'. |
$output{$type}.= |
|
&Apache::loncommon::start_data_table_row(). |
|
$roletext{$sortrole{$which}}. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
|
unless($output{$type} eq '') { |
|
$output{$type} = '<tr class="LC_info_row">'. |
|
"<td align='center' colspan='7'>".&mt($type)."</td></tr>". |
|
$output{$type}; |
|
$rolesdisplay = 1; |
|
} |
|
} |
|
if ($rolesdisplay == 1) { |
|
my $contextrole=''; |
|
if ($env{'request.course.id'}) { |
|
if (&Apache::loncommon::course_type() eq 'Community') { |
|
$contextrole = &mt('Existing Roles in this Community'); |
|
} else { |
|
$contextrole = &mt('Existing Roles in this Course'); |
|
} |
|
} elsif ($env{'request.role'} =~ /^au\./) { |
|
$contextrole = &mt('Existing Co-Author Roles in your Authoring Space'); |
|
} else { |
|
$contextrole = &mt('Existing Roles in this Domain'); |
|
} |
|
$r->print('<div class="LC_left_float">'. |
|
'<fieldset><legend>'.$contextrole.'</legend>'. |
&Apache::loncommon::start_data_table("LC_createuser"). |
&Apache::loncommon::start_data_table("LC_createuser"). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
'<th>'.$lt{'rev'}.'</th><th>'.$lt{'ren'}.'</th><th>'.$lt{'del'}. |
'<th>'.$lt{'rev'}.'</th><th>'.$lt{'ren'}.'</th><th>'.$lt{'del'}. |
'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}. |
'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}. |
'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
&Apache::loncommon::end_data_table_header_row()); |
&Apache::loncommon::end_data_table_header_row()); |
foreach my $type ('Construction Space','Course','Community','Domain','System','Unknown') { |
foreach my $type ('Authoring Space','Course','Community','Domain','System','Unknown') { |
if ($output{$type}) { |
if ($output{$type}) { |
$r->print($output{$type}."\n"); |
$r->print($output{$type}."\n"); |
} |
|
} |
} |
$r->print(&Apache::loncommon::end_data_table()); |
|
} |
} |
} # End of check for keys in rolesdump |
$r->print(&Apache::loncommon::end_data_table(). |
|
'</fieldset></div>'); |
|
} |
return; |
return; |
} |
} |
|
|
Line 1547 sub new_coauthor_roles {
|
Line 1984 sub new_coauthor_roles {
|
my $cuname=$env{'user.name'}; |
my $cuname=$env{'user.name'}; |
my $cudom=$env{'request.role.domain'}; |
my $cudom=$env{'request.role.domain'}; |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'cs' => "Construction Space", |
'cs' => "Authoring Space", |
'act' => "Activate", |
'act' => "Activate", |
'rol' => "Role", |
'rol' => "Role", |
'ext' => "Extent", |
'ext' => "Extent", |
Line 1598 sub new_coauthor_roles {
|
Line 2035 sub new_coauthor_roles {
|
'</span>'); |
'</span>'); |
} elsif (($env{'user.name'} eq $ccuname) && |
} elsif (($env{'user.name'} eq $ccuname) && |
($env{'user.domain'} eq $ccdomain)) { |
($env{'user.domain'} eq $ccdomain)) { |
$r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Construction Space is not permitted')); |
$r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Authoring Space is not permitted')); |
} |
} |
} |
} |
return $addrolesdisplay;; |
return $addrolesdisplay;; |
} |
} |
|
|
sub new_domain_roles { |
sub new_domain_roles { |
my ($r) = @_; |
my ($r,$ccdomain) = @_; |
my $addrolesdisplay = 0; |
my $addrolesdisplay = 0; |
# |
# |
# Domain level |
# Domain level |
Line 1623 sub new_domain_roles {
|
Line 2060 sub new_domain_roles {
|
foreach my $thisdomain (sort(&Apache::lonnet::all_domains())) { |
foreach my $thisdomain (sort(&Apache::lonnet::all_domains())) { |
foreach my $role (@allroles) { |
foreach my $role (@allroles) { |
next if ($role eq 'ad'); |
next if ($role eq 'ad'); |
|
next if (($role eq 'au') && ($ccdomain ne $thisdomain)); |
if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) { |
if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) { |
my $plrole=&Apache::lonnet::plaintext($role); |
my $plrole=&Apache::lonnet::plaintext($role); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
Line 1813 sub modify_login_block {
|
Line 2251 sub modify_login_block {
|
} |
} |
|
|
sub personal_data_display { |
sub personal_data_display { |
my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray) = @_; |
my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray, |
my ($output,$showforceid,%userenv,%canmodify,%canmodify_status); |
$now,$captchaform,$emailusername,$usertype) = @_; |
|
my ($output,%userenv,%canmodify,%canmodify_status); |
my @userinfo = ('firstname','middlename','lastname','generation', |
my @userinfo = ('firstname','middlename','lastname','generation', |
'permanentemail','id'); |
'permanentemail','id'); |
my $rowcount = 0; |
my $rowcount = 0; |
my $editable = 0; |
my $editable = 0; |
%canmodify_status = |
my %textboxsize = ( |
|
firstname => '15', |
|
middlename => '15', |
|
lastname => '15', |
|
generation => '5', |
|
permanentemail => '25', |
|
id => '15', |
|
); |
|
|
|
my %lt=&Apache::lonlocal::texthash( |
|
'pd' => "Personal Data", |
|
'firstname' => "First Name", |
|
'middlename' => "Middle Name", |
|
'lastname' => "Last Name", |
|
'generation' => "Generation", |
|
'permanentemail' => "Permanent e-mail address", |
|
'id' => "Student/Employee ID", |
|
'lg' => "Login Data", |
|
'inststatus' => "Affiliation", |
|
'email' => 'E-mail address', |
|
'valid' => 'Validation', |
|
); |
|
|
|
%canmodify_status = |
&Apache::lonuserutils::can_modify_userinfo($context,$ccdomain, |
&Apache::lonuserutils::can_modify_userinfo($context,$ccdomain, |
['inststatus'],$rolesarray); |
['inststatus'],$rolesarray); |
if (!$newuser) { |
if (!$newuser) { |
Line 1831 sub personal_data_display {
|
Line 2293 sub personal_data_display {
|
&Apache::lonuserutils::can_modify_userinfo($context,$ccdomain, |
&Apache::lonuserutils::can_modify_userinfo($context,$ccdomain, |
\@userinfo,$rolesarray); |
\@userinfo,$rolesarray); |
} elsif ($context eq 'selfcreate') { |
} elsif ($context eq 'selfcreate') { |
%canmodify = &selfcreate_canmodify($context,$ccdomain,\@userinfo, |
if ($newuser eq 'email') { |
$inst_results,$rolesarray); |
if (ref($emailusername) eq 'HASH') { |
|
if (ref($emailusername->{$usertype}) eq 'HASH') { |
|
my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info(); |
|
@userinfo = (); |
|
if ((ref($infofields) eq 'ARRAY') && (ref($infotitles) eq 'HASH')) { |
|
foreach my $field (@{$infofields}) { |
|
if ($emailusername->{$usertype}->{$field}) { |
|
push(@userinfo,$field); |
|
$canmodify{$field} = 1; |
|
unless ($textboxsize{$field}) { |
|
$textboxsize{$field} = 25; |
|
} |
|
unless ($lt{$field}) { |
|
$lt{$field} = $infotitles->{$field}; |
|
} |
|
if ($emailusername->{$usertype}->{$field} eq 'required') { |
|
$lt{$field} .= '<b>*</b>'; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
%canmodify = &selfcreate_canmodify($context,$ccdomain,\@userinfo, |
|
$inst_results,$rolesarray); |
|
} |
} |
} |
my %lt=&Apache::lonlocal::texthash( |
|
'pd' => "Personal Data", |
|
'firstname' => "First Name", |
|
'middlename' => "Middle Name", |
|
'lastname' => "Last Name", |
|
'generation' => "Generation", |
|
'permanentemail' => "Permanent e-mail address", |
|
'id' => "Student/Employee ID", |
|
'lg' => "Login Data", |
|
'inststatus' => "Affiliation", |
|
); |
|
my %textboxsize = ( |
|
firstname => '15', |
|
middlename => '15', |
|
lastname => '15', |
|
generation => '5', |
|
permanentemail => '25', |
|
id => '15', |
|
); |
|
my $genhelp=&Apache::loncommon::help_open_topic('Generation'); |
my $genhelp=&Apache::loncommon::help_open_topic('Generation'); |
$output = '<h3>'.$lt{'pd'}.'</h3>'. |
$output = '<h3>'.$lt{'pd'}.'</h3>'. |
&Apache::lonhtmlcommon::start_pick_box(); |
&Apache::lonhtmlcommon::start_pick_box(); |
|
if (($context eq 'selfcreate') && ($newuser eq 'email')) { |
|
$output .= &Apache::lonhtmlcommon::row_title($lt{'email'}.'<b>*</b>',undef, |
|
'LC_oddrow_value')."\n". |
|
'<input type="text" name="uname" size="25" value="" autocomplete="off" />'; |
|
$rowcount ++; |
|
$output .= &Apache::lonhtmlcommon::row_closure(1); |
|
my $upassone = '<input type="password" name="upass'.$now.'" size="20" autocomplete="off" />'; |
|
my $upasstwo = '<input type="password" name="upasscheck'.$now.'" size="20" autocomplete="off" />'; |
|
$output .= &Apache::lonhtmlcommon::row_title(&mt('Password').'<b>*</b>', |
|
'LC_pick_box_title', |
|
'LC_oddrow_value')."\n". |
|
$upassone."\n". |
|
&Apache::lonhtmlcommon::row_closure(1)."\n". |
|
&Apache::lonhtmlcommon::row_title(&mt('Confirm password').'<b>*</b>', |
|
'LC_pick_box_title', |
|
'LC_oddrow_value')."\n". |
|
$upasstwo. |
|
&Apache::lonhtmlcommon::row_closure()."\n"; |
|
} |
foreach my $item (@userinfo) { |
foreach my $item (@userinfo) { |
my $rowtitle = $lt{$item}; |
my $rowtitle = $lt{$item}; |
my $hiderow = 0; |
my $hiderow = 0; |
Line 1869 sub personal_data_display {
|
Line 2358 sub personal_data_display {
|
$row .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results->{$item}.'" />'.$inst_results->{$item}; |
$row .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results->{$item}.'" />'.$inst_results->{$item}; |
} else { |
} else { |
if ($context eq 'selfcreate') { |
if ($context eq 'selfcreate') { |
if ($canmodify{$item}) { |
if ($canmodify{$item}) { |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />'; |
$editable ++; |
$editable ++; |
} else { |
} else { |
$hiderow = 1; |
$hiderow = 1; |
Line 1881 sub personal_data_display {
|
Line 2370 sub personal_data_display {
|
} |
} |
} else { |
} else { |
if ($context eq 'selfcreate') { |
if ($context eq 'selfcreate') { |
if (($item eq 'permanentemail') && ($newuser eq 'email')) { |
if ($canmodify{$item}) { |
$row .= $ccuname; |
if ($newuser eq 'email') { |
} else { |
$row .= '<input type="text" name="'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />'; |
if ($canmodify{$item}) { |
|
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
|
$editable ++; |
|
} else { |
} else { |
$hiderow = 1; |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" autocomplete="off" />'; |
} |
} |
|
$editable ++; |
|
} else { |
|
$hiderow = 1; |
} |
} |
} else { |
} else { |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
Line 1898 sub personal_data_display {
|
Line 2387 sub personal_data_display {
|
} else { |
} else { |
if ($canmodify{$item}) { |
if ($canmodify{$item}) { |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />'; |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />'; |
|
if (($item eq 'id') && (!$newuser)) { |
|
$row .= '<br />'.&Apache::lonuserutils::forceid_change($context); |
|
} |
} else { |
} else { |
$row .= $userenv{$item}; |
$row .= $userenv{$item}; |
} |
} |
if ($item eq 'id') { |
|
$showforceid = $canmodify{$item}; |
|
} |
|
} |
} |
$row .= &Apache::lonhtmlcommon::row_closure(1); |
$row .= &Apache::lonhtmlcommon::row_closure(1); |
if (!$hiderow) { |
if (!$hiderow) { |
Line 1919 sub personal_data_display {
|
Line 2408 sub personal_data_display {
|
if ($canmodify_status{'inststatus'}) { |
if ($canmodify_status{'inststatus'}) { |
$shown = &pick_inst_statuses($userenv{'inststatus'},$usertypes,$types); |
$shown = &pick_inst_statuses($userenv{'inststatus'},$usertypes,$types); |
} else { |
} else { |
$shown .= $userenv{'inststatus'}; |
|
if ($userenv{'inststatus'} eq '') { |
if ($userenv{'inststatus'} eq '') { |
$hiderow = 1; |
$hiderow = 1; |
|
} else { |
|
my @showitems; |
|
foreach my $item ( map { &unescape($_); } split(':',$userenv{'inststatus'})) { |
|
if (exists($usertypes->{$item})) { |
|
push(@showitems,$usertypes->{$item}); |
|
} else { |
|
push(@showitems,$item); |
|
} |
|
} |
|
if (@showitems) { |
|
$shown = join(', ',@showitems); |
|
} else { |
|
$hiderow = 1; |
|
} |
} |
} |
} |
} |
if (!$hiderow) { |
if (!$hiderow) { |
my $row = &Apache::lonhtmlcommon::row_title(&mt('Affliations'),undef,'LC_oddrow_value')."\n". |
my $row = &Apache::lonhtmlcommon::row_title(&mt('Affiliations'),undef,'LC_oddrow_value')."\n". |
$shown.&Apache::lonhtmlcommon::row_closure(1); |
$shown.&Apache::lonhtmlcommon::row_closure(1); |
if ($context eq 'selfcreate') { |
if ($context eq 'selfcreate') { |
$rowcount ++; |
$rowcount ++; |
Line 1935 sub personal_data_display {
|
Line 2437 sub personal_data_display {
|
} |
} |
} |
} |
} |
} |
|
if (($context eq 'selfcreate') && ($newuser eq 'email')) { |
|
if ($captchaform) { |
|
$output .= &Apache::lonhtmlcommon::row_title($lt{'valid'}.'*', |
|
'LC_pick_box_title')."\n". |
|
$captchaform."\n".'<br /><br />'. |
|
&Apache::lonhtmlcommon::row_closure(1); |
|
$rowcount ++; |
|
} |
|
my $submit_text = &mt('Create account'); |
|
$output .= &Apache::lonhtmlcommon::row_title()."\n". |
|
'<br /><input type="submit" name="createaccount" value="'. |
|
$submit_text.'" />'. |
|
'<input type="hidden" name="type" value="'.$usertype.'" />'. |
|
&Apache::lonhtmlcommon::row_closure(1); |
|
} |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
if (wantarray) { |
if (wantarray) { |
if ($context eq 'selfcreate') { |
if ($context eq 'selfcreate') { |
return($output,$rowcount,$editable); |
return($output,$rowcount,$editable); |
} else { |
} else { |
return ($output,$showforceid); |
return $output; |
} |
} |
} else { |
} else { |
return $output; |
return $output; |
Line 2017 sub get_inststatuses {
|
Line 2534 sub get_inststatuses {
|
|
|
# ================================================================= Phase Three |
# ================================================================= Phase Three |
sub update_user_data { |
sub update_user_data { |
my ($r,$context,$crstype) = @_; |
my ($r,$context,$crstype,$brcrum,$showcredits) = @_; |
my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'}, |
my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'}, |
$env{'form.ccdomain'}); |
$env{'form.ccdomain'}); |
# Error messages |
# Error messages |
Line 2042 sub update_user_data {
|
Line 2559 sub update_user_data {
|
'// ]]>'."\n". |
'// ]]>'."\n". |
'</script>'."\n"; |
'</script>'."\n"; |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
my $args; |
push (@{$brcrum}, |
if ($env{'form.popup'}) { |
{href => "javascript:backPage(document.userupdate)", |
$args->{'no_nav_bar'} = 1; |
text => $breadcrumb_text{'search'}, |
} else { |
faq => 282, |
$args = undef; |
bug => 'Instructor Interface',} |
} |
); |
$r->print(&Apache::loncommon::start_page($title,$jscript,$args)); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage(document.userupdate)", |
|
text=>$breadcrumb_text{'search'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
if ($env{'form.prevphase'} eq 'userpicked') { |
if ($env{'form.prevphase'} eq 'userpicked') { |
&Apache::lonhtmlcommon::add_breadcrumb |
push(@{$brcrum}, |
({href=>"javascript:backPage(document.userupdate,'get_user_info','select')", |
{href => "javascript:backPage(document.userupdate,'get_user_info','select')", |
text=>$breadcrumb_text{'userpicked'}, |
text => $breadcrumb_text{'userpicked'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq => 282, |
} |
bug => 'Instructor Interface',}); |
&Apache::lonhtmlcommon::add_breadcrumb |
} |
({href=>"javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')", |
|
text=>$breadcrumb_text{'modify'}, |
|
faq=>282,bug=>'Instructor Interface',}, |
|
{href=>"/adm/createuser", |
|
text=>"Result", |
|
faq=>282,bug=>'Instructor Interface',}); |
|
my $helpitem = 'Course_Change_Privileges'; |
my $helpitem = 'Course_Change_Privileges'; |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
$helpitem = 'Course_Add_Student'; |
$helpitem = 'Course_Add_Student'; |
} |
} |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
push(@{$brcrum}, |
$helpitem)); |
{href => "javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')", |
|
text => $breadcrumb_text{'modify'}, |
|
faq => 282, |
|
bug => 'Instructor Interface',}, |
|
{href => "/adm/createuser", |
|
text => "Result", |
|
faq => 282, |
|
bug => 'Instructor Interface', |
|
help => $helpitem}); |
|
my $args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'User Management'}; |
|
if ($env{'form.popup'}) { |
|
$args->{'no_nav_bar'} = 1; |
|
} |
|
$r->print(&Apache::loncommon::start_page($title,$jscript,$args)); |
$r->print(&update_result_form($uhome)); |
$r->print(&update_result_form($uhome)); |
# Check Inputs |
# Check Inputs |
if (! $env{'form.ccuname'} ) { |
if (! $env{'form.ccuname'} ) { |
Line 2102 sub update_user_data {
|
Line 2622 sub update_user_data {
|
if (! exists($env{'form.makeuser'})) { |
if (! exists($env{'form.makeuser'})) { |
# Modifying an existing user, so check the validity of the name |
# Modifying an existing user, so check the validity of the name |
if ($uhome eq 'no_host') { |
if ($uhome eq 'no_host') { |
$r->print($error.&mt('Unable to determine home server for '). |
$r->print( |
$env{'form.ccuname'}.&mt(' in domain '). |
$error |
$env{'form.ccdomain'}.'.'); |
.'<p class="LC_error">' |
|
.&mt('Unable to determine home server for [_1] in domain [_2].', |
|
'"'.$env{'form.ccuname'}.'"','"'.$env{'form.ccdomain'}.'"') |
|
.'</p>'); |
return; |
return; |
} |
} |
} |
} |
Line 2132 sub update_user_data {
|
Line 2655 sub update_user_data {
|
# If they are creating a new user but have not specified login |
# If they are creating a new user but have not specified login |
# information this will be caught below. |
# information this will be caught below. |
} else { |
} else { |
$r->print($error.&mt('Invalid login mode or password').$end.$rtnlink); |
$r->print($error.&mt('Invalid login mode or password').$end.$rtnlink); |
return; |
return; |
} |
} |
|
|
$r->print('<h3>'.&mt('User [_1] in domain [_2]', |
$r->print('<h3>'.&mt('User [_1] in domain [_2]', |
$env{'form.ccuname'}, $env{'form.ccdomain'}).'</h3>'); |
$env{'form.ccuname'}.' ('.&Apache::loncommon::plainname($env{'form.ccuname'}, |
|
$env{'form.ccdomain'}).')', $env{'form.ccdomain'}).'</h3>'); |
|
my %prog_state = &Apache::lonhtmlcommon::Create_PrgWin($r,2); |
|
|
my (%alerts,%rulematch,%inst_results,%curr_rules); |
my (%alerts,%rulematch,%inst_results,%curr_rules); |
my @usertools = ('aboutme','blog','portfolio'); |
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
my @requestcourses = ('official','unofficial'); |
my @usertools = ('aboutme','blog','webdav','portfolio'); |
|
my @requestcourses = ('official','unofficial','community','textbook','placement'); |
|
my @requestauthor = ('requestauthor'); |
my ($othertitle,$usertypes,$types) = |
my ($othertitle,$usertypes,$types) = |
&Apache::loncommon::sorted_inst_types($env{'form.ccdomain'}); |
&Apache::loncommon::sorted_inst_types($env{'form.ccdomain'}); |
|
my %canmodify_status = |
|
&Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'}, |
|
['inststatus']); |
if ($env{'form.makeuser'}) { |
if ($env{'form.makeuser'}) { |
$r->print('<h3>'.&mt('Creating new account.').'</h3>'); |
$r->print('<h3>'.&mt('Creating new account.').'</h3>'); |
# Check for the authentication mode and password |
# Check for the authentication mode and password |
Line 2192 sub update_user_data {
|
Line 2723 sub update_user_data {
|
} |
} |
} |
} |
} |
} |
|
&Apache::lonhtmlcommon::Increment_PrgWin($r, \%prog_state); |
# Call modifyuser |
# Call modifyuser |
my $result = &Apache::lonnet::modifyuser |
my $result = &Apache::lonnet::modifyuser |
($env{'form.ccdomain'},$env{'form.ccuname'},$env{'form.cid'}, |
($env{'form.ccdomain'},$env{'form.ccuname'},$env{'form.cid'}, |
Line 2202 sub update_user_data {
|
Line 2734 sub update_user_data {
|
$r->print(&mt('Generating user').': '.$result); |
$r->print(&mt('Generating user').': '.$result); |
$uhome = &Apache::lonnet::homeserver($env{'form.ccuname'}, |
$uhome = &Apache::lonnet::homeserver($env{'form.ccuname'}, |
$env{'form.ccdomain'}); |
$env{'form.ccdomain'}); |
my (%changeHash,%newcustom,%changed); |
my (%changeHash,%newcustom,%changed,%changedinfo); |
if ($uhome ne 'no_host') { |
if ($uhome ne 'no_host') { |
if ($env{'form.customquota'} == 1) { |
if ($context eq 'domain') { |
if ($env{'form.portfolioquota'} eq '') { |
foreach my $name ('portfolio','author') { |
$newcustom{'quota'} = 0; |
if ($env{'form.custom_'.$name.'quota'} == 1) { |
} else { |
if ($env{'form.'.$name.'quota'} eq '') { |
$newcustom{'quota'} = $env{'form.portfolioquota'}; |
$newcustom{$name.'quota'} = 0; |
$newcustom{'quota'} =~ s/[^\d\.]//g; |
} else { |
|
$newcustom{$name.'quota'} = $env{'form.'.$name.'quota'}; |
|
$newcustom{$name.'quota'} =~ s/[^\d\.]//g; |
|
} |
|
if ("a_admin($newcustom{$name.'quota'},\%changeHash,$name)) { |
|
$changed{$name.'quota'} = 1; |
|
} |
|
} |
} |
} |
$changed{'quota'} = "a_admin($newcustom{'quota'},\%changeHash); |
foreach my $item (@usertools) { |
} |
if ($env{'form.custom'.$item} == 1) { |
foreach my $item (@usertools) { |
$newcustom{$item} = $env{'form.tools_'.$item}; |
if ($env{'form.custom'.$item} == 1) { |
$changed{$item} = &tool_admin($item,$newcustom{$item}, |
$newcustom{$item} = $env{'form.tools_'.$item}; |
\%changeHash,'tools'); |
$changed{$item} = &tool_admin($item,$newcustom{$item}, |
} |
\%changeHash,'tools'); |
|
} |
} |
} |
foreach my $item (@requestcourses) { |
foreach my $item (@requestcourses) { |
if ($env{'form.custom'.$item} == 1) { |
$newcustom{$item} = $env{'form.crsreq_'.$item}; |
$newcustom{$item} = $env{'form.crsreq_'.$item}; |
if ($env{'form.crsreq_'.$item} eq 'autolimit') { |
if ($env{'form.crsreq_'.$item} eq 'autolimit') { |
$newcustom{$item} .= '='; |
$newcustom{$item} .= '='; |
unless ($env{'form.crsreq_'.$item.'_limit'} =~ /\D/) { |
$env{'form.crsreq_'.$item.'_limit'} =~ s/\D+//g; |
$newcustom{$item} .= $env{'form.crsreq_'.$item.'_limit'}; |
if ($env{'form.crsreq_'.$item.'_limit'}) { |
|
$newcustom{$item} .= $env{'form.crsreq_'.$item.'_limit'}; |
|
} |
|
} |
|
$changed{$item} = &tool_admin($item,$newcustom{$item}, |
|
\%changeHash,'requestcourses'); |
} |
} |
} |
} |
$changed{$item} = &tool_admin($item,$newcustom{$item}, |
if ($env{'form.customrequestauthor'} == 1) { |
\%changeHash,'requestcourses'); |
$newcustom{'requestauthor'} = $env{'form.requestauthor'}; |
} |
$changed{'requestauthor'} = &tool_admin('requestauthor', |
if (exists($env{'form.inststatus'})) { |
$newcustom{'requestauthor'}, |
my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus'); |
\%changeHash,'requestauthor'); |
if (@inststatuses > 0) { |
} |
$changeHash{'inststatus'} = join(',',@inststatuses); |
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
$changed{'inststatus'} = $changeHash{'inststatus'}; |
my @adds = &Apache::loncommon::get_env_multiple('form.adhocroleadd'); |
|
if (&adhocrole_changes(\%changeHash)) { |
|
$changed{'adhocroles.'.$env{'request.role.domain'}} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
|
} |
|
} |
|
if ($canmodify_status{'inststatus'}) { |
|
if (exists($env{'form.inststatus'})) { |
|
my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus'); |
|
if (@inststatuses > 0) { |
|
$changeHash{'inststatus'} = join(',',@inststatuses); |
|
$changed{'inststatus'} = $changeHash{'inststatus'}; |
|
} |
} |
} |
} |
} |
if (keys(%changed)) { |
if (keys(%changed)) { |
$changeHash{'firstname'} = $env{'form.cfirstname'}; |
foreach my $item (@userinfo) { |
$changeHash{'middlename'} = $env{'form.cmiddlename'}; |
$changeHash{$item} = $env{'form.c'.$item}; |
$changeHash{'lastname'} = $env{'form.clastname'}; |
} |
$changeHash{'generation'} = $env{'form.cgeneration'}; |
|
$changeHash{'id'} = $env{'form.cid'}; |
|
$changeHash{'permanentemail'} = $env{'form.cpermanentemail'}; |
|
my $chgresult = |
my $chgresult = |
&Apache::lonnet::put('environment',\%changeHash, |
&Apache::lonnet::put('environment',\%changeHash, |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
Line 2259 sub update_user_data {
|
Line 2811 sub update_user_data {
|
$r->print($error.'Invalid login mode or password'.$end.$rtnlink); |
$r->print($error.'Invalid login mode or password'.$end.$rtnlink); |
return; |
return; |
} |
} |
# Only allow authentification modification if the person has authority |
# Only allow authentication modification if the person has authority |
if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) { |
$r->print('Modifying authentication: '. |
$r->print('Modifying authentication: '. |
&Apache::lonnet::modifyuserauth( |
&Apache::lonnet::modifyuserauth( |
Line 2269 sub update_user_data {
|
Line 2821 sub update_user_data {
|
($env{'form.ccuname'},$env{'form.ccdomain'})); |
($env{'form.ccuname'},$env{'form.ccdomain'})); |
} else { |
} else { |
# Okay, this is a non-fatal error. |
# Okay, this is a non-fatal error. |
$r->print($error.&mt('You do not have the authority to modify this users authentification information').'.'.$end); |
$r->print($error.&mt('You do not have the authority to modify this users authentication information.').$end); |
} |
} |
} |
} |
|
$r->rflush(); # Finish display of header before time consuming actions start |
|
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state); |
## |
## |
my (@userroles,%userupdate,$cnum,$cdom,$crstype,$namechanged); |
my (@userroles,%userupdate,$cnum,$cdom,$defaultcredits,%namechanged); |
if ($context eq 'course') { |
if ($context eq 'course') { |
($cnum,$cdom) = &Apache::lonuserutils::get_course_identity(); |
($cnum,$cdom) = |
|
&Apache::lonuserutils::get_course_identity(); |
$crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum); |
$crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum); |
|
if ($showcredits) { |
|
$defaultcredits = &Apache::lonuserutils::get_defaultcredits($cdom,$cnum); |
|
} |
} |
} |
if (! $env{'form.makeuser'} ) { |
if (! $env{'form.makeuser'} ) { |
# Check for need to change |
# Check for need to change |
my %userenv = &Apache::lonnet::get |
my %userenv = &Apache::lonnet::get |
('environment',['firstname','middlename','lastname','generation', |
('environment',['firstname','middlename','lastname','generation', |
'id','permanentemail','portfolioquota','inststatus','tools.aboutme', |
'id','permanentemail','portfolioquota','authorquota','inststatus', |
'tools.blog','tools.portfolio','requestcourses.official', |
'tools.aboutme','tools.blog','tools.webdav','tools.portfolio', |
'requestcourses.unofficial','requestcourses.community', |
'requestcourses.official','requestcourses.unofficial', |
|
'requestcourses.community','requestcourses.textbook', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.community'], |
'reqcrsotherdom.community','reqcrsotherdom.textbook', |
|
'reqcrsotherdom.placement','requestauthor', |
|
'adhocroles.'.$env{'request.role.domain'}], |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
my ($tmp) = keys(%userenv); |
my ($tmp) = keys(%userenv); |
if ($tmp =~ /^(con_lost|error)/i) { |
if ($tmp =~ /^(con_lost|error)/i) { |
Line 2363 sub update_user_data {
|
Line 2924 sub update_user_data {
|
push(@longroles,&Apache::lonnet::plaintext($role,$crstype)); |
push(@longroles,&Apache::lonnet::plaintext($role,$crstype)); |
} |
} |
} |
} |
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
|
my %canmodify = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},\@userinfo,\@userroles); |
my %canmodify = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},\@userinfo,\@userroles); |
foreach my $item (@userinfo) { |
foreach my $item (@userinfo) { |
# Strip leading and trailing whitespace |
# Strip leading and trailing whitespace |
Line 2409 sub update_user_data {
|
Line 2969 sub update_user_data {
|
} |
} |
} |
} |
} |
} |
my ($quotachanged,$oldportfolioquota,$newportfolioquota,$oldinststatus, |
my (%quotachanged,%oldquota,%newquota,%olddefquota,%newdefquota, |
$inststatus,$newinststatus,$oldisdefault,$newisdefault,$olddefquotatext, |
$oldinststatus,$newinststatus,%oldisdefault,%newisdefault,%oldsettings, |
$newdefquotatext,%oldaccess,%oldaccesstext,%newaccess,%newaccesstext, |
%oldsettingstext,%newsettings,%newsettingstext,@disporder, |
$oldinststatuses,$newinststatuses); |
%oldsettingstatus,%newsettingstatus); |
my ($defquota,$settingstatus) = |
@disporder = ('inststatus'); |
&Apache::loncommon::default_quota($env{'form.ccdomain'},$inststatus); |
if ($env{'request.role.domain'} eq $env{'form.ccdomain'}) { |
my ($showquota,$showtools,$showrequestcourses,$showinststatus,$showreqotherdom); |
push(@disporder,'requestcourses','requestauthor'); |
|
} else { |
|
push(@disporder,'reqcrsotherdom'); |
|
} |
|
push(@disporder,('quota','tools')); |
|
$oldinststatus = $userenv{'inststatus'}; |
|
foreach my $name ('portfolio','author') { |
|
($olddefquota{$name},$oldsettingstatus{$name}) = |
|
&Apache::loncommon::default_quota($env{'form.ccdomain'},$oldinststatus,$name); |
|
($newdefquota{$name},$newsettingstatus{$name}) = ($olddefquota{$name},$oldsettingstatus{$name}); |
|
} |
|
push(@disporder,'adhocroles'); |
|
my %canshow; |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
$showquota = 1; |
$canshow{'quota'} = 1; |
} |
} |
if (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) { |
$showtools = 1; |
$canshow{'tools'} = 1; |
} |
} |
if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('ccc',$env{'form.ccdomain'})) { |
$showrequestcourses = 1; |
$canshow{'requestcourses'} = 1; |
} elsif (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
} elsif (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
$showreqotherdom = 1; |
$canshow{'reqcrsotherdom'} = 1; |
} |
} |
if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'})) { |
$showinststatus = 1; |
$canshow{'inststatus'} = 1; |
|
} |
|
if (&Apache::lonnet::allowed('cau',$env{'form.ccdomain'})) { |
|
$canshow{'requestauthor'} = 1; |
|
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$canshow{'adhocroles'} = 1; |
} |
} |
my (%changeHash,%changed); |
my (%changeHash,%changed); |
$oldinststatus = $userenv{'inststatus'}; |
|
if ($oldinststatus eq '') { |
if ($oldinststatus eq '') { |
$oldinststatuses = $othertitle; |
$oldsettings{'inststatus'} = $othertitle; |
} else { |
} else { |
if (ref($usertypes) eq 'HASH') { |
if (ref($usertypes) eq 'HASH') { |
$oldinststatuses = join(', ',map{ $usertypes->{ &unescape($_) }; } (split(/:/,$userenv{'inststatus'}))); |
$oldsettings{'inststatus'} = join(', ',map{ $usertypes->{ &unescape($_) }; } (split(/:/,$userenv{'inststatus'}))); |
} else { |
} else { |
$oldinststatuses = join(', ',map{ &unescape($_); } (split(/:/,$userenv{'inststatus'}))); |
$oldsettings{'inststatus'} = join(', ',map{ &unescape($_); } (split(/:/,$userenv{'inststatus'}))); |
} |
} |
} |
} |
$changeHash{'inststatus'} = $userenv{'inststatus'}; |
$changeHash{'inststatus'} = $userenv{'inststatus'}; |
my %canmodify_inststatus = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},['inststatus'],\@userroles); |
if ($canmodify_status{'inststatus'}) { |
if ($canmodify_inststatus{'inststatus'}) { |
$canshow{'inststatus'} = 1; |
if (exists($env{'form.inststatus'})) { |
if (exists($env{'form.inststatus'})) { |
my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus'); |
my @inststatuses = &Apache::loncommon::get_env_multiple('form.inststatus'); |
if (@inststatuses > 0) { |
if (@inststatuses > 0) { |
Line 2451 sub update_user_data {
|
Line 3028 sub update_user_data {
|
$changeHash{'inststatus'} = $newinststatus; |
$changeHash{'inststatus'} = $newinststatus; |
if ($newinststatus ne $oldinststatus) { |
if ($newinststatus ne $oldinststatus) { |
$changed{'inststatus'} = $newinststatus; |
$changed{'inststatus'} = $newinststatus; |
|
foreach my $name ('portfolio','author') { |
|
($newdefquota{$name},$newsettingstatus{$name}) = |
|
&Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus,$name); |
|
} |
} |
} |
if (ref($usertypes) eq 'HASH') { |
if (ref($usertypes) eq 'HASH') { |
$newinststatuses = join(', ',map{ $usertypes->{$_}; } (@inststatuses)); |
$newsettings{'inststatus'} = join(', ',map{ $usertypes->{$_}; } (@inststatuses)); |
} else { |
} else { |
$newinststatuses = join(', ',map{ $usertypes->{$_}; } (@inststatuses)); |
$newsettings{'inststatus'} = join(', ',@inststatuses); |
|
} |
|
} |
|
} else { |
|
$newinststatus = ''; |
|
$changeHash{'inststatus'} = $newinststatus; |
|
$newsettings{'inststatus'} = $othertitle; |
|
if ($newinststatus ne $oldinststatus) { |
|
$changed{'inststatus'} = $changeHash{'inststatus'}; |
|
foreach my $name ('portfolio','author') { |
|
($newdefquota{$name},$newsettingstatus{$name}) = |
|
&Apache::loncommon::default_quota($env{'form.ccdomain'},$newinststatus,$name); |
|
} |
|
} |
|
} |
|
} elsif ($context ne 'selfcreate') { |
|
$canshow{'inststatus'} = 1; |
|
$newsettings{'inststatus'} = $oldsettings{'inststatus'}; |
|
} |
|
foreach my $name ('portfolio','author') { |
|
$changeHash{$name.'quota'} = $userenv{$name.'quota'}; |
|
} |
|
if ($context eq 'domain') { |
|
foreach my $name ('portfolio','author') { |
|
if ($userenv{$name.'quota'} ne '') { |
|
$oldquota{$name} = $userenv{$name.'quota'}; |
|
if ($env{'form.custom_'.$name.'quota'} == 1) { |
|
if ($env{'form.'.$name.'quota'} eq '') { |
|
$newquota{$name} = 0; |
|
} else { |
|
$newquota{$name} = $env{'form.'.$name.'quota'}; |
|
$newquota{$name} =~ s/[^\d\.]//g; |
|
} |
|
if ($newquota{$name} != $oldquota{$name}) { |
|
if ("a_admin($newquota{$name},\%changeHash,$name)) { |
|
$changed{$name.'quota'} = 1; |
|
} |
|
} |
|
} else { |
|
if ("a_admin('',\%changeHash,$name)) { |
|
$changed{$name.'quota'} = 1; |
|
$newquota{$name} = $newdefquota{$name}; |
|
$newisdefault{$name} = 1; |
|
} |
} |
} |
} else { |
} else { |
$newinststatus = ''; |
$oldisdefault{$name} = 1; |
$changeHash{'inststatus'} = $newinststatus; |
$oldquota{$name} = $olddefquota{$name}; |
$newinststatuses = $othertitle; |
if ($env{'form.custom_'.$name.'quota'} == 1) { |
if ($newinststatus ne $oldinststatus) { |
if ($env{'form.'.$name.'quota'} eq '') { |
$changed{'inststatus'} = $changeHash{'inststatus'}; |
$newquota{$name} = 0; |
|
} else { |
|
$newquota{$name} = $env{'form.'.$name.'quota'}; |
|
$newquota{$name} =~ s/[^\d\.]//g; |
|
} |
|
if ("a_admin($newquota{$name},\%changeHash,$name)) { |
|
$changed{$name.'quota'} = 1; |
|
} |
|
} else { |
|
$newquota{$name} = $newdefquota{$name}; |
|
$newisdefault{$name} = 1; |
} |
} |
} |
} |
|
if ($oldisdefault{$name}) { |
|
$oldsettingstext{'quota'}{$name} = &get_defaultquota_text($oldsettingstatus{$name}); |
|
} else { |
|
$oldsettingstext{'quota'}{$name} = &mt('custom quota: [_1] MB',$oldquota{$name}); |
|
} |
|
if ($newisdefault{$name}) { |
|
$newsettingstext{'quota'}{$name} = &get_defaultquota_text($newsettingstatus{$name}); |
|
} else { |
|
$newsettingstext{'quota'}{$name} = &mt('custom quota: [_1] MB',$newquota{$name}); |
|
} |
|
} |
|
&tool_changes('tools',\@usertools,\%oldsettings,\%oldsettingstext,\%userenv, |
|
\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
|
if ($env{'form.ccdomain'} eq $env{'request.role.domain'}) { |
|
&tool_changes('requestcourses',\@requestcourses,\%oldsettings,\%oldsettingstext, |
|
\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
|
&tool_changes('requestauthor',\@requestauthor,\%oldsettings,\%oldsettingstext, |
|
\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
|
} else { |
|
&tool_changes('reqcrsotherdom',\@requestcourses,\%oldsettings,\%oldsettingstext, |
|
\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
|
} |
|
if ($userenv{'adhocroles.'.$env{'request.role.domain'}}) { |
|
$changeHash{'adhocroles.'.$env{'request.role.domain'}} = $userenv{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
|
if (&adhocrole_changes(\%changeHash,\%userenv)) { |
|
$changed{'adhocroles'} = 1; |
|
$oldsettings{'adhocroles'} = $userenv{'adhocroles.'.$env{'request.role.domain'}}; |
|
$newsettings{'adhocroles'} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
|
} |
|
foreach my $item (@userinfo) { |
|
if ($env{'form.c'.$item} ne $userenv{$item}) { |
|
$namechanged{$item} = 1; |
} |
} |
} |
} |
$changeHash{'portfolioquota'} = $userenv{'portfolioquota'}; |
foreach my $name ('portfolio','author') { |
if ($userenv{'portfolioquota'} ne '') { |
$oldsettings{'quota'}{$name} = &mt('[_1] MB',$oldquota{$name}); |
$oldportfolioquota = $userenv{'portfolioquota'}; |
$newsettings{'quota'}{$name} = &mt('[_1] MB',$newquota{$name}); |
if ($env{'form.customquota'} == 1) { |
} |
if ($env{'form.portfolioquota'} eq '') { |
if ((keys(%namechanged) > 0) || (keys(%changed) > 0)) { |
$newportfolioquota = 0; |
|
} else { |
|
$newportfolioquota = $env{'form.portfolioquota'}; |
|
$newportfolioquota =~ s/[^\d\.]//g; |
|
} |
|
if ($newportfolioquota != $oldportfolioquota) { |
|
$changed{'quota'} = "a_admin($newportfolioquota,\%changeHash); |
|
} |
|
} else { |
|
$changed{'quota'} = "a_admin('',\%changeHash); |
|
$newportfolioquota = $defquota; |
|
$newisdefault = 1; |
|
} |
|
} else { |
|
$oldisdefault = 1; |
|
$oldportfolioquota = $defquota; |
|
if ($env{'form.customquota'} == 1) { |
|
if ($env{'form.portfolioquota'} eq '') { |
|
$newportfolioquota = 0; |
|
} else { |
|
$newportfolioquota = $env{'form.portfolioquota'}; |
|
$newportfolioquota =~ s/[^\d\.]//g; |
|
} |
|
$changed{'quota'} = "a_admin($newportfolioquota,\%changeHash); |
|
} else { |
|
$newportfolioquota = $defquota; |
|
$newisdefault = 1; |
|
} |
|
} |
|
if ($oldisdefault) { |
|
$olddefquotatext = &get_defaultquota_text($settingstatus); |
|
} |
|
if ($newisdefault) { |
|
$newdefquotatext = &get_defaultquota_text($settingstatus); |
|
} |
|
&tool_changes('tools',\@usertools,\%oldaccess,\%oldaccesstext,\%userenv, |
|
\%changeHash,\%changed,\%newaccess,\%newaccesstext); |
|
if ($env{'form.ccdomain'} eq $env{'request.role.domain'}) { |
|
&tool_changes('requestcourses',\@requestcourses,\%oldaccess,\%oldaccesstext, |
|
\%userenv,\%changeHash,\%changed,\%newaccess,\%newaccesstext); |
|
} else { |
|
&tool_changes('reqcrsotherdom',\@requestcourses,\%oldaccess,\%oldaccesstext, |
|
\%userenv,\%changeHash,\%changed,\%newaccess,\%newaccesstext); |
|
} |
|
if ($env{'form.cfirstname'} ne $userenv{'firstname'} || |
|
$env{'form.cmiddlename'} ne $userenv{'middlename'} || |
|
$env{'form.clastname'} ne $userenv{'lastname'} || |
|
$env{'form.cgeneration'} ne $userenv{'generation'} || |
|
$env{'form.cid'} ne $userenv{'id'} || |
|
$env{'form.cpermanentemail'} ne $userenv{'permanentemail'} ) { |
|
$namechanged = 1; |
|
} |
|
if (($namechanged) || (keys(%changed) > 0)) { |
|
$changeHash{'firstname'} = $env{'form.cfirstname'}; |
|
$changeHash{'middlename'} = $env{'form.cmiddlename'}; |
|
$changeHash{'lastname'} = $env{'form.clastname'}; |
|
$changeHash{'generation'} = $env{'form.cgeneration'}; |
|
$changeHash{'id'} = $env{'form.cid'}; |
|
$changeHash{'permanentemail'} = $env{'form.cpermanentemail'}; |
|
my ($chgresult,$namechgresult); |
my ($chgresult,$namechgresult); |
if (keys(%changed) > 0) { |
if (keys(%changed) > 0) { |
$chgresult = |
$chgresult = |
Line 2541 sub update_user_data {
|
Line 3150 sub update_user_data {
|
($env{'user.domain'} eq $env{'form.ccdomain'})) { |
($env{'user.domain'} eq $env{'form.ccdomain'})) { |
my %newenvhash; |
my %newenvhash; |
foreach my $key (keys(%changed)) { |
foreach my $key (keys(%changed)) { |
if (($key eq 'official') || ($key eq 'unofficial')) { |
if (($key eq 'official') || ($key eq 'unofficial') || |
|
($key eq 'community') || ($key eq 'textbook') || |
|
($key eq 'placement')) { |
$newenvhash{'environment.requestcourses.'.$key} = |
$newenvhash{'environment.requestcourses.'.$key} = |
$changeHash{'requestcourses.'.$key}; |
$changeHash{'requestcourses.'.$key}; |
if ($changeHash{'requestcourses.'.$key} ne '') { |
if ($changeHash{'requestcourses.'.$key}) { |
$newenvhash{'environment.canrequest.'.$key} = 1; |
$newenvhash{'environment.canrequest.'.$key} = 1; |
} else { |
} else { |
$newenvhash{'environment.canrequest.'.$key} = |
$newenvhash{'environment.canrequest.'.$key} = |
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
$key,'reload','requestcourses'); |
$key,'reload','requestcourses'); |
} |
} |
|
} elsif ($key eq 'requestauthor') { |
|
$newenvhash{'environment.'.$key} = $changeHash{$key}; |
|
if ($changeHash{$key}) { |
|
$newenvhash{'environment.canrequest.author'} = 1; |
|
} else { |
|
$newenvhash{'environment.canrequest.author'} = |
|
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
|
$key,'reload','requestauthor'); |
|
} |
|
} elsif ($key eq 'adhocroles') { |
|
$newenvhash{'adhocroles.'.$env{'request.role.domain'}} = |
|
$changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
} elsif ($key ne 'quota') { |
} elsif ($key ne 'quota') { |
$newenvhash{'environment.tools.'.$key} = |
$newenvhash{'environment.tools.'.$key} = |
$changeHash{'tools.'.$key}; |
$changeHash{'tools.'.$key}; |
Line 2559 sub update_user_data {
|
Line 3182 sub update_user_data {
|
$changeHash{'tools.'.$key}; |
$changeHash{'tools.'.$key}; |
} else { |
} else { |
$newenvhash{'environment.availabletools.'.$key} = |
$newenvhash{'environment.availabletools.'.$key} = |
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, $key,'reload','tools'); |
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
|
$key,'reload','tools'); |
} |
} |
} |
} |
} |
} |
Line 2569 sub update_user_data {
|
Line 3193 sub update_user_data {
|
} |
} |
} |
} |
} |
} |
if ($namechanged) { |
if (keys(%namechanged) > 0) { |
# Make the change |
foreach my $field (@userinfo) { |
|
$changeHash{$field} = $env{'form.c'.$field}; |
|
} |
|
# Make the change |
$namechgresult = |
$namechgresult = |
&Apache::lonnet::modifyuser($env{'form.ccdomain'}, |
&Apache::lonnet::modifyuser($env{'form.ccdomain'}, |
$env{'form.ccuname'},$changeHash{'id'},undef,undef, |
$env{'form.ccuname'},$changeHash{'id'},undef,undef, |
$changeHash{'firstname'},$changeHash{'middlename'}, |
$changeHash{'firstname'},$changeHash{'middlename'}, |
$changeHash{'lastname'},$changeHash{'generation'}, |
$changeHash{'lastname'},$changeHash{'generation'}, |
$changeHash{'id'},undef,$changeHash{'permanentemail'}); |
$changeHash{'id'},undef,$changeHash{'permanentemail'},undef,\@userinfo); |
%userupdate = ( |
%userupdate = ( |
lastname => $env{'form.clastname'}, |
lastname => $env{'form.clastname'}, |
middlename => $env{'form.cmiddlename'}, |
middlename => $env{'form.cmiddlename'}, |
Line 2585 sub update_user_data {
|
Line 3212 sub update_user_data {
|
id => $env{'form.cid'}, |
id => $env{'form.cid'}, |
); |
); |
} |
} |
if (($namechanged && $namechgresult eq 'ok') || |
if (((keys(%namechanged) > 0) && $namechgresult eq 'ok') || |
((keys(%changed) > 0) && $chgresult eq 'ok')) { |
((keys(%changed) > 0) && $chgresult eq 'ok')) { |
# Tell the user we changed the name |
# Tell the user we changed the name |
my %lt=&Apache::lonlocal::texthash( |
&display_userinfo($r,1,\@disporder,\%canshow,\@requestcourses, |
'uic' => 'User Information Changed', |
\@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged, |
'frst' => 'First Name', |
\%oldsettings, \%oldsettingstext,\%newsettings, |
'mddl' => 'Middle Name', |
\%newsettingstext); |
'lst' => 'Last Name', |
|
'gen' => 'Generation', |
|
'id' => 'Student/Employee ID', |
|
'mail' => 'Permanent e-mail address', |
|
'disk' => 'Disk space allocated to portfolio files', |
|
'blog' => 'Blog Availability', |
|
'aboutme' => 'Personal Information Page Availability', |
|
'portfolio' => 'Portfolio Availability', |
|
'official' => 'Can Request Official Courses', |
|
'unofficial' => 'Can Request Unofficial Courses', |
|
'inststatus' => "Affiliation", |
|
'prvs' => 'Previous Value:', |
|
'chto' => 'Changed To:' |
|
); |
|
$r->print('<h4>'.$lt{'uic'}.'</h4>'. |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row()); |
|
$r->print(<<"END"); |
|
<th> </th> |
|
<th>$lt{'frst'}</th> |
|
<th>$lt{'mddl'}</th> |
|
<th>$lt{'lst'}</th> |
|
<th>$lt{'gen'}</th> |
|
<th>$lt{'id'}</th> |
|
<th>$lt{'mail'}</th> |
|
END |
|
if ($showinststatus) { |
|
$r->print(" |
|
<th>$lt{'inststatus'}</th>\n"); |
|
} |
|
if ($showrequestcourses) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<th>$lt{$item}</th>\n"); |
|
} |
|
} elsif ($showreqotherdom) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<th>$lt{$item}</th>\n"); |
|
} |
|
} |
|
if ($showquota) { |
|
$r->print(" |
|
<th>$lt{'disk'}</th>\n"); |
|
} |
|
if ($showtools) { |
|
foreach my $item (@usertools) { |
|
$r->print(" |
|
<th>$lt{$item}</th>\n"); |
|
} |
|
} |
|
$r->print(&Apache::loncommon::end_data_table_header_row(). |
|
&Apache::loncommon::start_data_table_row()); |
|
$r->print(<<"END"); |
|
<td><b>$lt{'prvs'}</b></td> |
|
<td>$userenv{'firstname'} </td> |
|
<td>$userenv{'middlename'} </td> |
|
<td>$userenv{'lastname'} </td> |
|
<td>$userenv{'generation'} </td> |
|
<td>$userenv{'id'}</td> |
|
<td>$userenv{'permanentemail'} </td> |
|
END |
|
if ($showinststatus) { |
|
$r->print(" |
|
<td>$oldinststatuses</td>\n"); |
|
} |
|
if ($showrequestcourses) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<td>$oldaccess{$item} $oldaccesstext{$item}</td>\n"); |
|
} |
|
} elsif ($showreqotherdom) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<td>$oldaccess{$item} $oldaccesstext{$item}</td>\n"); |
|
} |
|
} |
|
if ($showquota) { |
|
$r->print(" |
|
<td>$oldportfolioquota Mb $olddefquotatext </td>\n"); |
|
} |
|
if ($showtools) { |
|
foreach my $item (@usertools) { |
|
$r->print(" |
|
<td>$oldaccess{$item} $oldaccesstext{$item} </td>\n"); |
|
} |
|
} |
|
$r->print(&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::start_data_table_row()); |
|
$r->print(<<"END"); |
|
<td><span class="LC_nobreak"><b>$lt{'chto'}</b></span></td> |
|
<td>$env{'form.cfirstname'} </td> |
|
<td>$env{'form.cmiddlename'} </td> |
|
<td>$env{'form.clastname'} </td> |
|
<td>$env{'form.cgeneration'} </td> |
|
<td>$env{'form.cid'} </td> |
|
<td>$env{'form.cpermanentemail'} </td> |
|
END |
|
if ($showinststatus) { |
|
$r->print(" |
|
<td>$newinststatuses</td>\n"); |
|
} |
|
if ($showrequestcourses) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<td>$newaccess{$item} $newaccesstext{$item} </td>\n"); |
|
} |
|
} elsif ($showreqotherdom) { |
|
foreach my $item (@requestcourses) { |
|
$r->print(" |
|
<td>$newaccess{$item} $newaccesstext{$item} </td>\n"); |
|
} |
|
} |
|
if ($showquota) { |
|
$r->print(" |
|
<td>$newportfolioquota Mb $newdefquotatext </td>\n"); |
|
} |
|
if ($showtools) { |
|
foreach my $item (@usertools) { |
|
$r->print(" |
|
<td>$newaccess{$item} $newaccesstext{$item} </td>\n"); |
|
} |
|
} |
|
$r->print(&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::end_data_table().'<br />'); |
|
if ($env{'form.cid'} ne $userenv{'id'}) { |
if ($env{'form.cid'} ne $userenv{'id'}) { |
&Apache::lonnet::idput($env{'form.ccdomain'}, |
&Apache::lonnet::idput($env{'form.ccdomain'}, |
($env{'form.ccuname'} => $env{'form.cid'})); |
{$env{'form.ccuname'} => $env{'form.cid'}},$uhome,'ids'); |
if (($recurseid) && |
if (($recurseid) && |
(&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) { |
(&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) { |
my $idresult = |
my $idresult = |
Line 2738 END
|
Line 3240 END
|
&Apache::lonnet::appenv(\%newenvhash); |
&Apache::lonnet::appenv(\%newenvhash); |
} |
} |
} else { # error occurred |
} else { # error occurred |
$r->print('<span class="LC_error">'.&mt('Unable to successfully change environment for').' '. |
$r->print( |
$env{'form.ccuname'}.' '.&mt('in domain').' '. |
'<p class="LC_error">' |
$env{'form.ccdomain'}.'</span><br />'); |
.&mt('Unable to successfully change environment for [_1] in domain [_2].', |
|
'"'.$env{'form.ccuname'}.'"', |
|
'"'.$env{'form.ccdomain'}.'"') |
|
.'</p>'); |
} |
} |
} else { # End of if ($env ... ) logic |
} else { # End of if ($env ... ) logic |
# They did not want to change the users name, quota, tool availability, |
# They did not want to change the users name, quota, tool availability, |
# or ability to request creation of courses, |
# or ability to request creation of courses, |
# but we can still tell them what the name and quota and availabilities are |
# but we can still tell them what the name and quota and availabilities are |
my %lt=&Apache::lonlocal::texthash( |
&display_userinfo($r,undef,\@disporder,\%canshow,\@requestcourses, |
'id' => "Student/Employee ID", |
\@usertools,\@requestauthor,\%userenv,\%changed,\%namechanged,\%oldsettings, |
'mail' => "Permanent e-mail address", |
\%oldsettingstext,\%newsettings,\%newsettingstext); |
'disk' => "Disk space allocated to user's portfolio files", |
|
'blog' => "Blog Availability", |
|
'aboutme' => "Personal Information Page Availability", |
|
'portfolio' => "Portfolio Availability", |
|
'official' => "Can Request Official Courses", |
|
'unofficial' => "Can Request Unofficial Courses", |
|
'inststatus' => "Affiliation", |
|
); |
|
$r->print(<<"END"); |
|
<h4>$userenv{'firstname'} $userenv{'middlename'} $userenv{'lastname'} $userenv{'generation'} |
|
END |
|
if ($userenv{'permanentemail'} ne '') { |
|
$r->print('<br />['.$lt{'mail'}.': '. |
|
$userenv{'permanentemail'}.']'); |
|
} |
|
if ($showinststatus) { |
|
$r->print('<br />['.$lt{'inststatus'}.': '.$oldinststatuses.']'); |
|
} |
|
if ($showrequestcourses) { |
|
foreach my $item (@requestcourses) { |
|
$r->print('<br />['.$lt{$item}.': '.$newaccess{$item}.' '. |
|
$newaccesstext{$item}.']'."\n"); |
|
} |
|
} elsif ($showreqotherdom) { |
|
foreach my $item (@requestcourses) { |
|
$r->print('<br />['.$lt{$item}.': '.$newaccess{$item}.' '. |
|
$newaccesstext{$item}.']'."\n"); |
|
} |
|
} |
|
if ($showtools) { |
|
foreach my $item (@usertools) { |
|
$r->print('<br />['.$lt{$item}.': '.$newaccess{$item}.' '. |
|
$newaccesstext{$item}.']'."\n"); |
|
} |
|
} |
|
if ($showquota) { |
|
$r->print('<br />['.$lt{'disk'}.': '.$oldportfolioquota.' Mb '. |
|
$olddefquotatext.']'); |
|
} |
|
$r->print('</h4>'); |
|
} |
} |
if (@mod_disallowed) { |
if (@mod_disallowed) { |
my ($rolestr,$contextname); |
my ($rolestr,$contextname); |
Line 2798 END
|
Line 3263 END
|
$rolestr = &mt('No roles'); |
$rolestr = &mt('No roles'); |
} |
} |
if ($context eq 'course') { |
if ($context eq 'course') { |
$contextname = &mt('course'); |
$contextname = 'course'; |
} elsif ($context eq 'author') { |
} elsif ($context eq 'author') { |
$contextname = &mt('co-author'); |
$contextname = 'co-author'; |
} |
} |
$r->print(&mt('The following fields were not updated: ').'<ul>'); |
$r->print(&mt('The following fields were not updated: ').'<ul>'); |
my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles(); |
my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles(); |
Line 2809 END
|
Line 3274 END
|
} |
} |
$r->print('</ul>'); |
$r->print('</ul>'); |
if (@mod_disallowed == 1) { |
if (@mod_disallowed == 1) { |
$r->print(&mt("You do not have the authority to change this field given the user's current set of active/future [_1] roles:",$contextname)); |
$r->print(&mt("You do not have the authority to change this field given the user's current set of active/future $contextname roles:")); |
} else { |
} else { |
$r->print(&mt("You do not have the authority to change these fields given the user's current set of active/future [_1] roles:",$contextname)); |
$r->print(&mt("You do not have the authority to change these fields given the user's current set of active/future $contextname roles:")); |
} |
} |
my $helplink = 'javascript:helpMenu('."'display'".')'; |
my $helplink = 'javascript:helpMenu('."'display'".')'; |
$r->print('<span class="LC_cusr_emph">'.$rolestr.'</span><br />' |
$r->print('<span class="LC_cusr_emph">'.$rolestr.'</span><br />' |
Line 2824 END
|
Line 3289 END
|
.&Apache::lonuserutils::print_namespacing_alerts($env{'form.ccdomain'},\%alerts,\%curr_rules) |
.&Apache::lonuserutils::print_namespacing_alerts($env{'form.ccdomain'},\%alerts,\%curr_rules) |
.'</span>'); |
.'</span>'); |
} |
} |
|
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
&enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype); |
&enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser,$context, |
$r->print('<p><a href="javascript:backPage(document.userupdate)">'); |
$crstype,$showcredits,$defaultcredits); |
if ($crstype eq 'Community') { |
my $linktext = ($crstype eq 'Community' ? |
$r->print(&mt('Enroll Another Member')); |
&mt('Enroll Another Member') : &mt('Enroll Another Student')); |
} else { |
$r->print( |
$r->print(&mt('Enroll Another Student')); |
&Apache::lonhtmlcommon::actionbox([ |
} |
'<a href="javascript:backPage(document.userupdate)">' |
$r->print('</a></p>'); |
.($crstype eq 'Community' ? |
|
&mt('Enroll Another Member') : &mt('Enroll Another Student')) |
|
.'</a>'])); |
} else { |
} else { |
my @rolechanges = &update_roles($r,$context); |
my @rolechanges = &update_roles($r,$context,$showcredits); |
if ($namechanged) { |
if (keys(%namechanged) > 0) { |
if ($context eq 'course') { |
if ($context eq 'course') { |
if (@userroles > 0) { |
if (@userroles > 0) { |
if ((@rolechanges == 0) || |
if ((@rolechanges == 0) || |
Line 2855 END
|
Line 3323 END
|
if ($env{'form.popup'}) { |
if ($env{'form.popup'}) { |
$r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>'); |
$r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>'); |
} else { |
} else { |
$r->print('<p><a href="javascript:backPage(document.userupdate,'."'$env{'form.prevphase'}','modify'".')">' |
$r->print('<br />'.&Apache::lonhtmlcommon::actionbox(['<a href="javascript:backPage(document.userupdate,'."'$env{'form.prevphase'}','modify'".')">' |
.&mt('Modify this user: [_1]','<span class="LC_cusr_emph">'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.' ('.$userinfo.')</span>').'</a>' |
.&mt('Modify this user: [_1]','<span class="LC_cusr_emph">'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.' ('.$userinfo.')</span>').'</a>', |
.(' 'x5).'<a href="javascript:backPage(document.userupdate)">' |
'<a href="javascript:backPage(document.userupdate)">'.&mt('Create/Modify Another User').'</a>'])); |
.&mt('Create/Modify Another User').'</a></p>'); |
|
} |
} |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
} |
|
|
|
sub display_userinfo { |
|
my ($r,$changed,$order,$canshow,$requestcourses,$usertools,$requestauthor, |
|
$userenv,$changedhash,$namechangedhash,$oldsetting,$oldsettingtext, |
|
$newsetting,$newsettingtext) = @_; |
|
return unless (ref($order) eq 'ARRAY' && |
|
ref($canshow) eq 'HASH' && |
|
ref($requestcourses) eq 'ARRAY' && |
|
ref($requestauthor) eq 'ARRAY' && |
|
ref($usertools) eq 'ARRAY' && |
|
ref($userenv) eq 'HASH' && |
|
ref($changedhash) eq 'HASH' && |
|
ref($oldsetting) eq 'HASH' && |
|
ref($oldsettingtext) eq 'HASH' && |
|
ref($newsetting) eq 'HASH' && |
|
ref($newsettingtext) eq 'HASH'); |
|
my %lt=&Apache::lonlocal::texthash( |
|
'ui' => 'User Information', |
|
'uic' => 'User Information Changed', |
|
'firstname' => 'First Name', |
|
'middlename' => 'Middle Name', |
|
'lastname' => 'Last Name', |
|
'generation' => 'Generation', |
|
'id' => 'Student/Employee ID', |
|
'permanentemail' => 'Permanent e-mail address', |
|
'portfolioquota' => 'Disk space allocated to portfolio files', |
|
'authorquota' => 'Disk space allocated to Authoring Space', |
|
'blog' => 'Blog Availability', |
|
'webdav' => 'WebDAV Availability', |
|
'aboutme' => 'Personal Information Page Availability', |
|
'portfolio' => 'Portfolio Availability', |
|
'official' => 'Can Request Official Courses', |
|
'unofficial' => 'Can Request Unofficial Courses', |
|
'community' => 'Can Request Communities', |
|
'textbook' => 'Can Request Textbook Courses', |
|
'placement' => 'Can Request Placement Tests', |
|
'requestauthor' => 'Can Request Author Role', |
|
'adhocroles' => 'Ad Hoc Roles Selectable via Helpdesk Role', |
|
'inststatus' => "Affiliation", |
|
'prvs' => 'Previous Value:', |
|
'chto' => 'Changed To:' |
|
); |
|
if ($changed) { |
|
$r->print('<h3>'.$lt{'uic'}.'</h3>'. |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row()); |
|
$r->print("<th> </th>\n"); |
|
$r->print('<th><b>'.$lt{'prvs'}.'</b></th>'); |
|
$r->print('<th><span class="LC_nobreak"><b>'.$lt{'chto'}.'</b></span></th>'); |
|
$r->print(&Apache::loncommon::end_data_table_header_row()); |
|
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
|
|
|
foreach my $item (@userinfo) { |
|
my $value = $env{'form.c'.$item}; |
|
#show changes only: |
|
unless ($value eq $userenv->{$item}){ |
|
$r->print(&Apache::loncommon::start_data_table_row()); |
|
$r->print("<td>$lt{$item}</td>\n"); |
|
$r->print("<td>".$userenv->{$item}."</td>\n"); |
|
$r->print("<td>$value </td>\n"); |
|
$r->print(&Apache::loncommon::end_data_table_row()); |
|
} |
|
} |
|
foreach my $entry (@{$order}) { |
|
if ($canshow->{$entry}) { |
|
if (($entry eq 'requestcourses') || ($entry eq 'reqcrsotherdom') || ($entry eq 'requestauthor')) { |
|
my @items; |
|
if ($entry eq 'requestauthor') { |
|
@items = ($entry); |
|
} else { |
|
@items = @{$requestcourses}; |
|
} |
|
foreach my $item (@items) { |
|
if (($newsetting->{$item} ne $oldsetting->{$item}) || |
|
($newsettingtext->{$item} ne $oldsettingtext->{$item})) { |
|
$r->print(&Apache::loncommon::start_data_table_row()."\n"); |
|
$r->print("<td>$lt{$item}</td>\n"); |
|
$r->print("<td>".$oldsetting->{$item}); |
|
if ($oldsettingtext->{$item}) { |
|
if ($oldsetting->{$item}) { |
|
$r->print(' -- '); |
|
} |
|
$r->print($oldsettingtext->{$item}); |
|
} |
|
$r->print("</td>\n"); |
|
$r->print("<td>".$newsetting->{$item}); |
|
if ($newsettingtext->{$item}) { |
|
if ($newsetting->{$item}) { |
|
$r->print(' -- '); |
|
} |
|
$r->print($newsettingtext->{$item}); |
|
} |
|
$r->print("</td>\n"); |
|
$r->print(&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
} |
|
} elsif ($entry eq 'tools') { |
|
foreach my $item (@{$usertools}) { |
|
if ($newsetting->{$item} ne $oldsetting->{$item}) { |
|
$r->print(&Apache::loncommon::start_data_table_row()."\n"); |
|
$r->print("<td>$lt{$item}</td>\n"); |
|
$r->print("<td>".$oldsetting->{$item}.' '.$oldsettingtext->{$item}."</td>\n"); |
|
$r->print("<td>".$newsetting->{$item}.' '.$newsettingtext->{$item}."</td>\n"); |
|
$r->print(&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
} |
|
} elsif ($entry eq 'quota') { |
|
if ((ref($oldsetting->{$entry}) eq 'HASH') && (ref($oldsettingtext->{$entry}) eq 'HASH') && |
|
(ref($newsetting->{$entry}) eq 'HASH') && (ref($newsettingtext->{$entry}) eq 'HASH')) { |
|
foreach my $name ('portfolio','author') { |
|
if ($newsetting->{$entry}->{$name} ne $oldsetting->{$entry}->{$name}) { |
|
$r->print(&Apache::loncommon::start_data_table_row()."\n"); |
|
$r->print("<td>$lt{$name.$entry}</td>\n"); |
|
$r->print("<td>".$oldsettingtext->{$entry}->{$name}."</td>\n"); |
|
$r->print("<td>".$newsettingtext->{$entry}->{$name}."</td>\n"); |
|
$r->print(&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
} |
|
} |
|
} else { |
|
if ($newsetting->{$entry} ne $oldsetting->{$entry}) { |
|
$r->print(&Apache::loncommon::start_data_table_row()."\n"); |
|
$r->print("<td>$lt{$entry}</td>\n"); |
|
$r->print("<td>".$oldsetting->{$entry}.' '.$oldsettingtext->{$entry}."</td>\n"); |
|
$r->print("<td>".$newsetting->{$entry}.' '.$newsettingtext->{$entry}."</td>\n"); |
|
$r->print(&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
} |
|
} |
|
} |
|
$r->print(&Apache::loncommon::end_data_table().'<br />'); |
|
} else { |
|
$r->print('<h3>'.$lt{'ui'}.'</h3>'. |
|
'<p>'.&mt('No changes made to user information').'</p>'); |
|
} |
|
return; |
} |
} |
|
|
sub tool_changes { |
sub tool_changes { |
Line 2873 sub tool_changes {
|
Line 3476 sub tool_changes {
|
(ref($newaccess) eq 'HASH') && (ref($newaccesstext) eq 'HASH'))) { |
(ref($newaccess) eq 'HASH') && (ref($newaccesstext) eq 'HASH'))) { |
return; |
return; |
} |
} |
|
my %reqdisplay = &requestchange_display(); |
if ($context eq 'reqcrsotherdom') { |
if ($context eq 'reqcrsotherdom') { |
my @options = ('approval','validate','autolimit'); |
my @options = ('approval','validate','autolimit'); |
my $optregex = join('|',@options); |
my $optregex = join('|',@options); |
my %reqdisplay = &courserequest_display(); |
|
my $cdom = $env{'request.role.domain'}; |
my $cdom = $env{'request.role.domain'}; |
foreach my $tool (@{$usertools}) { |
foreach my $tool (@{$usertools}) { |
$oldaccesstext->{$tool} = &mt('No'); |
$oldaccesstext->{$tool} = &mt("availability set to 'off'"); |
$newaccesstext->{$tool} = $oldaccesstext->{$tool}; |
$newaccesstext->{$tool} = $oldaccesstext->{$tool}; |
$changeHash->{$context.'.'.$tool} = $userenv->{$context.'.'.$tool}; |
$changeHash->{$context.'.'.$tool} = $userenv->{$context.'.'.$tool}; |
my $newop; |
my ($newop,$limit); |
if ($env{'form.'.$context.'_'.$tool}) { |
if ($env{'form.'.$context.'_'.$tool}) { |
$newop = $env{'form.'.$context.'_'.$tool}; |
$newop = $env{'form.'.$context.'_'.$tool}; |
if ($newop eq 'autolimit') { |
if ($newop eq 'autolimit') { |
my $limit = $env{'form.'.$context.'_'.$tool.'_limit'}; |
$limit = $env{'form.'.$context.'_'.$tool.'_limit'}; |
$limit =~ s/\D+//g; |
$limit =~ s/\D+//g; |
$newop .= '='.$limit; |
$newop .= '='.$limit; |
} |
} |
Line 2896 sub tool_changes {
|
Line 3499 sub tool_changes {
|
$changed->{$tool}=&tool_admin($tool,$cdom.':'.$newop, |
$changed->{$tool}=&tool_admin($tool,$cdom.':'.$newop, |
$changeHash,$context); |
$changeHash,$context); |
if ($changed->{$tool}) { |
if ($changed->{$tool}) { |
$newaccesstext->{$tool} = &mt('Yes'); |
if ($newop =~ /^autolimit/) { |
|
if ($limit) { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} else { |
|
$newaccesstext->{$tool} = $reqdisplay{$newop}; |
|
} |
} else { |
} else { |
$newaccesstext->{$tool} = $oldaccesstext->{$tool}; |
$newaccesstext->{$tool} = $oldaccesstext->{$tool}; |
} |
} |
Line 2907 sub tool_changes {
|
Line 3518 sub tool_changes {
|
my $changedoms; |
my $changedoms; |
foreach my $req (@curr) { |
foreach my $req (@curr) { |
if ($req =~ /^\Q$cdom\E\:($optregex\=?\d*)$/) { |
if ($req =~ /^\Q$cdom\E\:($optregex\=?\d*)$/) { |
$oldaccesstext->{$tool} = &mt('Yes'); |
|
my $oldop = $1; |
my $oldop = $1; |
|
if ($oldop =~ /^autolimit=(\d*)/) { |
|
my $limit = $1; |
|
if ($limit) { |
|
$oldaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$oldaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} else { |
|
$oldaccesstext->{$tool} = $reqdisplay{$oldop}; |
|
} |
if ($oldop ne $newop) { |
if ($oldop ne $newop) { |
$changedoms = 1; |
$changedoms = 1; |
foreach my $item (@curr) { |
foreach my $item (@curr) { |
Line 2942 sub tool_changes {
|
Line 3562 sub tool_changes {
|
my $limit = $env{'form.'.$context.'_'.$tool.'_limit'}; |
my $limit = $env{'form.'.$context.'_'.$tool.'_limit'}; |
$limit =~ s/\D+//g; |
$limit =~ s/\D+//g; |
if ($limit) { |
if ($limit) { |
$newaccesstext->{$tool} = &mt('Yes, up to limit of [quant,_1,request] per user.',$limit); |
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
} else { |
} else { |
$newaccesstext->{$tool} = &mt('Yes, processed automatically'); |
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
} |
} |
} else { |
} else { |
$newaccesstext->{$tool} = $reqdisplay{$env{'form.'.$context.'_'.$tool}}; |
$newaccesstext->{$tool} = $reqdisplay{$env{'form.'.$context.'_'.$tool}}; |
} |
} |
} else { |
} else { |
$newaccesstext->{$tool} = &mt('No'); |
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
} |
} |
} |
} |
} |
} |
Line 2959 sub tool_changes {
|
Line 3579 sub tool_changes {
|
return; |
return; |
} |
} |
foreach my $tool (@{$usertools}) { |
foreach my $tool (@{$usertools}) { |
my $newval; |
my ($newval,$limit,$envkey); |
|
$envkey = $context.'.'.$tool; |
if ($context eq 'requestcourses') { |
if ($context eq 'requestcourses') { |
$newval = $env{'form.crsreq_'.$tool}; |
$newval = $env{'form.crsreq_'.$tool}; |
if ($newval eq 'autolimit') { |
if ($newval eq 'autolimit') { |
$newval .= '='.$env{'form.crsreq_'.$tool.'_limit'}; |
$limit = $env{'form.crsreq_'.$tool.'_limit'}; |
} |
$limit =~ s/\D+//g; |
|
$newval .= '='.$limit; |
|
} |
|
} elsif ($context eq 'requestauthor') { |
|
$newval = $env{'form.'.$context}; |
|
$envkey = $context; |
} else { |
} else { |
$newval = $env{'form.'.$context.'_'.$tool}; |
$newval = $env{'form.'.$context.'_'.$tool}; |
} |
} |
if ($userenv->{$context.'.'.$tool} ne '') { |
if ($userenv->{$envkey} ne '') { |
$oldaccess->{$tool} = &mt('custom'); |
$oldaccess->{$tool} = &mt('custom'); |
if ($userenv->{$context.'.'.$tool}) { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
$oldaccesstext->{$tool} = &mt("availability set to 'on'"); |
if ($userenv->{$envkey} =~ /^autolimit=(\d*)$/) { |
|
my $currlimit = $1; |
|
if ($currlimit eq '') { |
|
$oldaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} else { |
|
$oldaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$currlimit); |
|
} |
|
} elsif ($userenv->{$envkey}) { |
|
$oldaccesstext->{$tool} = $reqdisplay{$userenv->{$envkey}}; |
|
} else { |
|
$oldaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} else { |
} else { |
$oldaccesstext->{$tool} = &mt("availability set to 'off'"); |
if ($userenv->{$envkey}) { |
|
$oldaccesstext->{$tool} = &mt("availability set to 'on'"); |
|
} else { |
|
$oldaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} |
} |
$changeHash->{$context.'.'.$tool} = $userenv->{$context.'.'.$tool}; |
$changeHash->{$envkey} = $userenv->{$envkey}; |
if ($env{'form.custom'.$tool} == 1) { |
if ($env{'form.custom'.$tool} == 1) { |
if ($newval ne $userenv->{$context.'.'.$tool}) { |
if ($newval ne $userenv->{$envkey}) { |
$changed->{$tool} = &tool_admin($tool,$newval,$changeHash, |
$changed->{$tool} = &tool_admin($tool,$newval,$changeHash, |
$context); |
$context); |
if ($changed->{$tool}) { |
if ($changed->{$tool}) { |
$newaccess->{$tool} = &mt('custom'); |
$newaccess->{$tool} = &mt('custom'); |
if ($newval) { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
if ($newval =~ /^autolimit/) { |
|
if ($limit) { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} elsif ($newval) { |
|
$newaccesstext->{$tool} = $reqdisplay{$newval}; |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} else { |
} else { |
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
if ($newval) { |
|
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} |
} |
} else { |
} else { |
$newaccess->{$tool} = $oldaccess->{$tool}; |
$newaccess->{$tool} = $oldaccess->{$tool}; |
if ($userenv->{$context.'.'.$tool}) { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
if ($newval =~ /^autolimit/) { |
|
if ($limit) { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} elsif ($newval) { |
|
$newaccesstext->{$tool} = $reqdisplay{$newval}; |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} else { |
} else { |
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
if ($userenv->{$context.'.'.$tool}) { |
|
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} |
} |
} |
} |
} else { |
} else { |
Line 3005 sub tool_changes {
|
Line 3674 sub tool_changes {
|
$newaccess->{$tool} = &mt('default'); |
$newaccess->{$tool} = &mt('default'); |
} else { |
} else { |
$newaccess->{$tool} = $oldaccess->{$tool}; |
$newaccess->{$tool} = $oldaccess->{$tool}; |
if ($userenv->{$context.'.'.$tool}) { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
if ($newval =~ /^autolimit/) { |
|
if ($limit) { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} elsif ($newval) { |
|
$newaccesstext->{$tool} = $reqdisplay{$newval}; |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} else { |
} else { |
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
if ($userenv->{$context.'.'.$tool}) { |
|
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} |
} |
} |
} |
} |
} |
Line 3019 sub tool_changes {
|
Line 3702 sub tool_changes {
|
$context); |
$context); |
if ($changed->{$tool}) { |
if ($changed->{$tool}) { |
$newaccess->{$tool} = &mt('custom'); |
$newaccess->{$tool} = &mt('custom'); |
if ($newval) { |
if (($context eq 'requestcourses') || ($context eq 'requestauthor')) { |
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
if ($newval =~ /^autolimit/) { |
|
if ($limit) { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval, up to limit of [quant,_1,request] per user',$limit); |
|
} else { |
|
$newaccesstext->{$tool} = &mt('available with automatic approval (unlimited)'); |
|
} |
|
} elsif ($newval) { |
|
$newaccesstext->{$tool} = $reqdisplay{$newval}; |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} else { |
} else { |
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
if ($newval) { |
|
$newaccesstext->{$tool} = &mt("availability set to 'on'"); |
|
} else { |
|
$newaccesstext->{$tool} = &mt("availability set to 'off'"); |
|
} |
} |
} |
} else { |
} else { |
$newaccess->{$tool} = $oldaccess->{$tool}; |
$newaccess->{$tool} = $oldaccess->{$tool}; |
Line 3035 sub tool_changes {
|
Line 3732 sub tool_changes {
|
return; |
return; |
} |
} |
|
|
|
sub adhocrole_changes { |
|
my ($changehashref,$userenv) = @_; |
|
my @adds = &Apache::loncommon::get_env_multiple('form.adhocroleadd'); |
|
my @dels = &Apache::loncommon::get_env_multiple('form.adhocroledel'); |
|
my (@saved,@added,@alladhoc,$changed); |
|
my $adhoc_key = 'adhocroles.'.$env{'request.role.domain'}; |
|
if (!$env{'form.makeuser'}) { |
|
if (ref($userenv) eq 'HASH') { |
|
my @current; |
|
if ($userenv->{$adhoc_key}) { |
|
@current = split(/,/,$userenv->{$adhoc_key}); |
|
if (@dels) { |
|
foreach my $curr (@current) { |
|
next if ($curr eq ''); |
|
unless (grep(/\Q$curr\E$/,@dels)) { |
|
push(@saved,$curr); |
|
} |
|
} |
|
$changed = 1; |
|
} else { |
|
@saved = @current; |
|
} |
|
} |
|
} |
|
} |
|
if (@adds) { |
|
my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'}); |
|
my %existing=&Apache::lonnet::dump('roles',$env{'request.role.domain'}, |
|
$confname,'rolesdef_'); |
|
foreach my $poss (@adds) { |
|
if (exists($existing{'rolesdef_'.$poss})) { |
|
push(@added,$poss); |
|
$changed = 1; |
|
} |
|
} |
|
} |
|
if (@added) { |
|
if (@saved) { |
|
foreach my $add (@added) { |
|
unless (grep(/^\Q$add\E$/,@saved)) { |
|
push(@alladhoc,$add); |
|
} |
|
} |
|
} else { |
|
push(@alladhoc,@added); |
|
} |
|
} |
|
if (@saved) { |
|
push(@alladhoc,@saved); |
|
} |
|
if (@alladhoc) { |
|
my $adhocstr = join(',',sort(@alladhoc)); |
|
$changehashref->{$adhoc_key} = $adhocstr; |
|
} elsif (@dels) { |
|
&Apache::lonnet::del('environment',[$adhoc_key],$env{'form.ccdomain'},$env{'form.ccuname'}); |
|
delete($changehashref->{$adhoc_key}); |
|
if (($env{'form.ccdomain'} eq $env{'user.domain'}) && |
|
($env{'form.ccuname'} eq $env{'user.name'})) { |
|
&Apache::lonnet::delenv($adhoc_key); |
|
} |
|
} |
|
return $changed; |
|
} |
|
|
sub update_roles { |
sub update_roles { |
my ($r,$context) = @_; |
my ($r,$context,$showcredits) = @_; |
my $now=time; |
my $now=time; |
my @rolechanges; |
my @rolechanges; |
my %disallowed; |
my %disallowed; |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
foreach my $key (keys (%env)) { |
foreach my $key (keys(%env)) { |
next if (! $env{$key}); |
next if (! $env{$key}); |
next if ($key eq 'form.action'); |
next if ($key eq 'form.action'); |
# Revoke roles |
# Revoke roles |
Line 3053 sub update_roles {
|
Line 3814 sub update_roles {
|
&Apache::lonnet::revokerole($env{'form.ccdomain'}, |
&Apache::lonnet::revokerole($env{'form.ccdomain'}, |
$env{'form.ccuname'}, |
$env{'form.ccuname'}, |
$scope,$role,'','',$context); |
$scope,$role,'','',$context); |
$r->print(&mt('Revoking [_1] in [_2]: [_3]', |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$role,$scope,'<b>'.$result.'</b>').'<br />'); |
&mt('Revoking [_1] in [_2]', |
|
&Apache::lonnet::plaintext($role), |
|
&Apache::loncommon::show_role_extent($scope,$context,$role)), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = |
my $result = |
&Apache::lonuserutils::classlist_drop($scope, |
&Apache::lonuserutils::classlist_drop($scope, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$now); |
$now); |
$r->print($result); |
$r->print(&Apache::lonhtmlcommon::confirm_success($result)); |
} |
} |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
push(@rolechanges,$role); |
push(@rolechanges,$role); |
Line 3068 sub update_roles {
|
Line 3835 sub update_roles {
|
} |
} |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
# Revoke custom role |
# Revoke custom role |
$r->print(&mt('Revoking custom role:'). |
my $result = &Apache::lonnet::revokecustomrole( |
' '.$4.' by '.$3.':'.$2.' in '.$1.': <b>'. |
$env{'form.ccdomain'},$env{'form.ccuname'},$1,$2,$3,$4,'','',$context); |
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'}, |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$env{'form.ccuname'},$1,$2,$3,$4,'','',$context). |
&mt('Revoking custom role [_1] by [_2] in [_3]', |
'</b><br />'); |
$4,$3.':'.$2,&Apache::loncommon::show_role_extent($1,$context,'cr')), |
|
$result ne 'ok').'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
} |
} |
Line 3086 sub update_roles {
|
Line 3857 sub update_roles {
|
$env{'form.ccuname'}, |
$env{'form.ccuname'}, |
$scope,$role,$now,0,1,'', |
$scope,$role,$now,0,1,'', |
$context); |
$context); |
$r->print(&mt('Deleting [_1] in [_2]: [_3]',$role,$scope, |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
'<b>'.$result.'</b>').'<br />'); |
&mt('Deleting [_1] in [_2]', |
|
&Apache::lonnet::plaintext($role), |
|
&Apache::loncommon::show_role_extent($scope,$context,$role)), |
|
$result ne 'ok').'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
|
|
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = |
my $result = |
&Apache::lonuserutils::classlist_drop($scope, |
&Apache::lonuserutils::classlist_drop($scope, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$env{'form.ccuname'},$env{'form.ccdomain'}, |
$now); |
$now); |
$r->print($result); |
$r->print(&Apache::lonhtmlcommon::confirm_success($result)); |
} |
} |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
push(@rolechanges,$role); |
push(@rolechanges,$role); |
Line 3102 sub update_roles {
|
Line 3880 sub update_roles {
|
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
# Delete custom role |
# Delete custom role |
$r->print(&mt('Deleting custom role [_1] by [_2] in [_3]', |
my $result = |
$rolename,$rnam.':'.$rdom,$url).': <b>'. |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
0,1,$context); |
0,1,$context).'</b><br />'); |
$r->print(&Apache::lonhtmlcommon::confirm_success(&mt('Deleting custom role [_1] by [_2] in [_3]', |
|
$rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
|
|
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
} |
} |
Line 3122 sub update_roles {
|
Line 3906 sub update_roles {
|
my $output; |
my $output; |
if ($role eq 'st') { |
if ($role eq 'st') { |
if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) { |
if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) { |
my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$1,$2,$3); |
my ($cdom,$cnum,$csec) = ($1,$2,$3); |
|
my $credits; |
|
if ($showcredits) { |
|
my $defaultcredits = |
|
&Apache::lonuserutils::get_defaultcredits($cdom,$cnum); |
|
$credits = &get_user_credits($defaultcredits,$cdom,$cnum); |
|
} |
|
my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$cdom,$cnum,$csec,$context,$credits); |
if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course') || ($result eq 'refused')) { |
if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course') || ($result eq 'refused')) { |
if ($result eq 'refused' && $logmsg) { |
if ($result eq 'refused' && $logmsg) { |
$output = $logmsg; |
$output = $logmsg; |
} else { |
} else { |
$output = "Error: $result\n"; |
$output = &mt('Error: [_1]',$result)."\n"; |
} |
} |
} else { |
} else { |
$output = &mt('Assigning').' '.$role.' in '.$url. |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Assigning [_1] in [_2] starting [_3]', |
&mt('starting').' '.localtime($now). |
&Apache::lonnet::plaintext($role), |
': <br />'.$logmsg.'<br />'. |
&Apache::loncommon::show_role_extent($url,$context,'st'), |
&mt('Add to classlist').': <b>ok</b><br />'; |
&Apache::lonlocal::locallocaltime($now))).'<br />'.$logmsg.'<br />'; |
} |
} |
} |
} |
} else { |
} else { |
my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$role,0,$now,'','', |
$env{'form.ccuname'},$url,$role,0,$now,'','', |
$context); |
$context); |
$output = &mt('Re-enabling [_1] in [_2]: [_3]', |
$output = &Apache::lonhtmlcommon::confirm_success(&mt('Re-enabling [_1] in [_2]', |
$role,$url,'<b>'.$result.'</b>').'<br />'; |
&Apache::lonnet::plaintext($role), |
} |
&Apache::loncommon::show_role_extent($url,$context,$role)),$result ne "ok").'<br />'; |
|
if ($result ne "ok") { |
|
$output .= &mt('Error: [_1]',$result).'<br />'; |
|
} |
|
} |
$r->print($output); |
$r->print($output); |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
push(@rolechanges,$role); |
push(@rolechanges,$role); |
Line 3154 sub update_roles {
|
Line 3949 sub update_roles {
|
my $result = &Apache::lonnet::assigncustomrole( |
my $result = &Apache::lonnet::assigncustomrole( |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$url,$rdom,$rnam,$rolename,0,$now,undef,$context); |
$url,$rdom,$rnam,$rolename,0,$now,undef,$context); |
$r->print(&mt('Re-enabling custom role [_1] by [_2] in [_3]: [_4]', |
$r->print(&Apache::lonhtmlcommon::confirm_success( |
$rolename,$rnam.':'.$rdom,$url,'<b>'.$result.'</b>').'<br />'); |
&mt('Re-enabling custom role [_1] by [_2] in [_3]', |
|
$rolename,$rnam.':'.$rdom,&Apache::loncommon::show_role_extent($1,$context,'cr')), |
|
$result ne "ok").'<br />'); |
|
if ($result ne "ok") { |
|
$r->print(&mt('Error: [_1]',$result).'<br />'); |
|
} |
if (!grep(/^cr$/,@rolechanges)) { |
if (!grep(/^cr$/,@rolechanges)) { |
push(@rolechanges,'cr'); |
push(@rolechanges,'cr'); |
} |
} |
Line 3184 sub update_roles {
|
Line 3984 sub update_roles {
|
} else { |
} else { |
my %curr_groups = |
my %curr_groups = |
&Apache::longroup::coursegroups($one,$two); |
&Apache::longroup::coursegroups($one,$two); |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
foreach my $sec (sort {$a cmp $b} keys(%sections)) { |
if (($sec eq 'none') || ($sec eq 'all') || |
if (($sec eq 'none') || ($sec eq 'all') || |
exists($curr_groups{$sec})) { |
exists($curr_groups{$sec})) { |
$disallowed{$sec} = $url; |
$disallowed{$sec} = $url; |
Line 3212 sub update_roles {
|
Line 4012 sub update_roles {
|
# split multiple sections |
# split multiple sections |
my %sections = (); |
my %sections = (); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three); |
|
my $credits; |
|
if ($three eq 'st') { |
|
if ($showcredits) { |
|
my $defaultcredits = |
|
&Apache::lonuserutils::get_defaultcredits($one,$two); |
|
$credits = $env{'form.credits_'.$one.'_'.$two.'_'.$three}; |
|
$credits =~ s/[^\d\.]//g; |
|
if ($credits eq $defaultcredits) { |
|
undef($credits); |
|
} |
|
} |
|
} |
if ($num_sections == 0) { |
if ($num_sections == 0) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context,$credits)); |
} else { |
} else { |
my %curr_groups = |
my %curr_groups = |
&Apache::longroup::coursegroups($one,$two); |
&Apache::longroup::coursegroups($one,$two); |
my $emptysec = 0; |
my $emptysec = 0; |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
foreach my $sec (sort {$a cmp $b} keys(%sections)) { |
$sec =~ s/\W//g; |
$sec =~ s/\W//g; |
if ($sec ne '') { |
if ($sec ne '') { |
if (($sec eq 'none') || ($sec eq 'all') || |
if (($sec eq 'none') || ($sec eq 'all') || |
Line 3227 sub update_roles {
|
Line 4039 sub update_roles {
|
next; |
next; |
} |
} |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec,$context)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec,$context,$credits)); |
} else { |
} else { |
$emptysec = 1; |
$emptysec = 1; |
} |
} |
} |
} |
if ($emptysec) { |
if ($emptysec) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context,$credits)); |
} |
} |
} |
} |
if (!grep(/^\Q$three\E$/,@rolechanges)) { |
if (!grep(/^\Q$three\E$/,@rolechanges)) { |
Line 3258 sub update_roles {
|
Line 4070 sub update_roles {
|
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context)); |
} else { |
} else { |
my $emptysec = 0; |
my $emptysec = 0; |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
foreach my $sec (sort {$a cmp $b} keys(%sections)) { |
if ($sec ne '') { |
if ($sec ne '') { |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec,$context)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec,$context)); |
Line 3293 sub update_roles {
|
Line 4105 sub update_roles {
|
} |
} |
} # End of foreach (keys(%env)) |
} # End of foreach (keys(%env)) |
# Flush the course logs so reverse user roles immediately updated |
# Flush the course logs so reverse user roles immediately updated |
&Apache::lonnet::flushcourselogs(); |
$r->register_cleanup(\&Apache::lonnet::flushcourselogs); |
if (@rolechanges == 0) { |
if (@rolechanges == 0) { |
$r->print(&mt('No roles to modify')); |
$r->print('<p>'.&mt('No roles to modify').'</p>'); |
} |
} |
return @rolechanges; |
return @rolechanges; |
} |
} |
|
|
|
sub get_user_credits { |
|
my ($uname,$udom,$defaultcredits,$cdom,$cnum) = @_; |
|
if ($cdom eq '' || $cnum eq '') { |
|
return unless ($env{'request.course.id'}); |
|
$cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
$cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
} |
|
my $credits; |
|
my %currhash = |
|
&Apache::lonnet::get('classlist',[$uname.':'.$udom],$cdom,$cnum); |
|
if (keys(%currhash) > 0) { |
|
my @items = split(/:/,$currhash{$uname.':'.$udom}); |
|
my $crdidx = &Apache::loncoursedata::CL_CREDITS() - 3; |
|
$credits = $items[$crdidx]; |
|
$credits =~ s/[^\d\.]//g; |
|
} |
|
if ($credits eq $defaultcredits) { |
|
undef($credits); |
|
} |
|
return $credits; |
|
} |
|
|
sub enroll_single_student { |
sub enroll_single_student { |
my ($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype) = @_; |
my ($r,$uhome,$amode,$genpwd,$now,$newuser,$context,$crstype, |
|
$showcredits,$defaultcredits) = @_; |
$r->print('<h3>'); |
$r->print('<h3>'); |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$r->print(&mt('Enrolling Member')); |
$r->print(&mt('Enrolling Member')); |
Line 3313 sub enroll_single_student {
|
Line 4148 sub enroll_single_student {
|
# Remove non alphanumeric values from section |
# Remove non alphanumeric values from section |
$env{'form.sections'}=~s/\W//g; |
$env{'form.sections'}=~s/\W//g; |
|
|
|
my $credits; |
|
if (($showcredits) && ($env{'form.credits'} ne '')) { |
|
$credits = $env{'form.credits'}; |
|
$credits =~ s/[^\d\.]//g; |
|
if ($credits ne '') { |
|
if ($credits eq $defaultcredits) { |
|
undef($credits); |
|
} |
|
} |
|
} |
|
|
# Clean out any old student roles the user has in this class. |
# Clean out any old student roles the user has in this class. |
&Apache::lonuserutils::modifystudent($env{'form.ccdomain'}, |
&Apache::lonuserutils::modifystudent($env{'form.ccdomain'}, |
$env{'form.ccuname'},$env{'request.course.id'},undef,$uhome); |
$env{'form.ccuname'},$env{'request.course.id'},undef,$uhome); |
Line 3322 sub enroll_single_student {
|
Line 4168 sub enroll_single_student {
|
$env{'form.ccuname'},$env{'form.cid'},$env{'form.cfirstname'}, |
$env{'form.ccuname'},$env{'form.cid'},$env{'form.cfirstname'}, |
$env{'form.cmiddlename'},$env{'form.clastname'}, |
$env{'form.cmiddlename'},$env{'form.clastname'}, |
$env{'form.generation'},$env{'form.sections'},$enddate, |
$env{'form.generation'},$env{'form.sections'},$enddate, |
$startdate,'manual',undef,$env{'request.course.id'},'',$context); |
$startdate,'manual',undef,$env{'request.course.id'},'',$context, |
|
$credits); |
if ($enroll_result =~ /^ok/) { |
if ($enroll_result =~ /^ok/) { |
$r->print(&mt('<b>[_1]</b> enrolled',$env{'form.ccuname'}.':'.$env{'form.ccdomain'})); |
$r->print(&mt('[_1] enrolled','<b>'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.'</b>')); |
if ($env{'form.sections'} ne '') { |
if ($env{'form.sections'} ne '') { |
$r->print(' '.&mt('in section [_1]',$env{'form.sections'})); |
$r->print(' '.&mt('in section [_1]',$env{'form.sections'})); |
} |
} |
Line 3341 sub enroll_single_student {
|
Line 4188 sub enroll_single_student {
|
} |
} |
$r->print('.<br />'.$showstart.'; '.$showend); |
$r->print('.<br />'.$showstart.'; '.$showend); |
if ($startdate <= $now && !$newuser) { |
if ($startdate <= $now && !$newuser) { |
$r->print('<p> '); |
$r->print('<p class="LC_info">'); |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$r->print(&mt('If the member is currently logged-in to LON-CAPA, the new role will be available when the member next logs in.')); |
$r->print(&mt('If the member is currently logged-in to LON-CAPA, the new role can be displayed by using the "Check for changes" link on the Roles/Courses page.')); |
} else { |
} else { |
$r->print(&mt('If the student is currently logged-in to LON-CAPA, the new role will be available when the student next logs in.')); |
$r->print(&mt('If the student is currently logged-in to LON-CAPA, the new role can be displayed by using the "Check for changes" link on the Roles/Courses page.')); |
} |
} |
$r->print('</p>'); |
$r->print('</p>'); |
} |
} |
} else { |
} else { |
$r->print(&mt('unable to enroll').": ".$enroll_result); |
$r->print(&mt('unable to enroll').": ".$enroll_result); |
Line 3359 sub get_defaultquota_text {
|
Line 4206 sub get_defaultquota_text {
|
my ($settingstatus) = @_; |
my ($settingstatus) = @_; |
my $defquotatext; |
my $defquotatext; |
if ($settingstatus eq '') { |
if ($settingstatus eq '') { |
$defquotatext = &mt('(default)'); |
$defquotatext = &mt('default'); |
} else { |
} else { |
my ($usertypes,$order) = |
my ($usertypes,$order) = |
&Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'}); |
&Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'}); |
if ($usertypes->{$settingstatus} eq '') { |
if ($usertypes->{$settingstatus} eq '') { |
$defquotatext = &mt('(default)'); |
$defquotatext = &mt('default'); |
} else { |
} else { |
$defquotatext = &mt('(default for [_1])',$usertypes->{$settingstatus}); |
$defquotatext = &mt('default for [_1]',$usertypes->{$settingstatus}); |
} |
} |
} |
} |
return $defquotatext; |
return $defquotatext; |
Line 3375 sub get_defaultquota_text {
|
Line 4222 sub get_defaultquota_text {
|
sub update_result_form { |
sub update_result_form { |
my ($uhome) = @_; |
my ($uhome) = @_; |
my $outcome = |
my $outcome = |
'<form name="userupdate" method="post" />'."\n"; |
'<form name="userupdate" method="post" action="">'."\n"; |
foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') { |
foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') { |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
} |
} |
Line 3391 sub update_result_form {
|
Line 4238 sub update_result_form {
|
$outcome .= '<input type="hidden" name="forcenewuser" value="1" />'."\n"; |
$outcome .= '<input type="hidden" name="forcenewuser" value="1" />'."\n"; |
} |
} |
$outcome .= '<input type="hidden" name="phase" value="" />'."\n". |
$outcome .= '<input type="hidden" name="phase" value="" />'."\n". |
'<input type ="hidden" name="currstate" value="" />'."\n". |
'<input type="hidden" name="currstate" value="" />'."\n". |
'<input type ="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'</form>'; |
'</form>'; |
return $outcome; |
return $outcome; |
} |
} |
|
|
sub quota_admin { |
sub quota_admin { |
my ($setquota,$changeHash) = @_; |
my ($setquota,$changeHash,$name) = @_; |
my $quotachanged; |
my $quotachanged; |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
# Current user has quota modification privileges |
# Current user has quota modification privileges |
if (ref($changeHash) eq 'HASH') { |
if (ref($changeHash) eq 'HASH') { |
$quotachanged = 1; |
$quotachanged = 1; |
$changeHash->{'portfolioquota'} = $setquota; |
$changeHash->{$name.'quota'} = $setquota; |
} |
} |
} |
} |
return $quotachanged; |
return $quotachanged; |
Line 3421 sub tool_admin {
|
Line 4268 sub tool_admin {
|
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'})) { |
$canchange = 1; |
$canchange = 1; |
} |
} |
|
} elsif ($context eq 'requestauthor') { |
|
if (&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) { |
|
$canchange = 1; |
|
} |
} elsif (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) { |
} elsif (&Apache::lonnet::allowed('mut',$env{'form.ccdomain'})) { |
# Current user has quota modification privileges |
# Current user has quota modification privileges |
$canchange = 1; |
$canchange = 1; |
Line 3429 sub tool_admin {
|
Line 4280 sub tool_admin {
|
if ($canchange) { |
if ($canchange) { |
if (ref($changeHash) eq 'HASH') { |
if (ref($changeHash) eq 'HASH') { |
$toolchanged = 1; |
$toolchanged = 1; |
$changeHash->{$context.'.'.$tool} = $settool; |
if ($tool eq 'requestauthor') { |
|
$changeHash->{$context} = $settool; |
|
} else { |
|
$changeHash->{$context.'.'.$tool} = $settool; |
|
} |
} |
} |
} |
} |
return $toolchanged; |
return $toolchanged; |
Line 3471 sub build_roles {
|
Line 4326 sub build_roles {
|
# ========================================================== Custom Role Editor |
# ========================================================== Custom Role Editor |
|
|
sub custom_role_editor { |
sub custom_role_editor { |
my ($r) = @_; |
my ($r,$brcrum,$prefix) = @_; |
my $rolename=$env{'form.rolename'}; |
my $action = $env{'form.customroleaction'}; |
|
my $rolename; |
|
if ($action eq 'new') { |
|
$rolename=$env{'form.newrolename'}; |
|
} else { |
|
$rolename=$env{'form.rolename'}; |
|
} |
|
|
if ($rolename eq 'make new role') { |
my ($crstype,$context); |
$rolename=$env{'form.newrolename'}; |
if ($env{'request.course.id'}) { |
|
$crstype = &Apache::loncommon::course_type(); |
|
$context = 'course'; |
|
} else { |
|
$context = 'domain'; |
|
$crstype = 'course'; |
} |
} |
|
|
$rolename=~s/[^A-Za-z0-9]//gs; |
$rolename=~s/[^A-Za-z0-9]//gs; |
|
|
if (!$rolename || $env{'form.phase'} eq 'pickrole') { |
if (!$rolename || $env{'form.phase'} eq 'pickrole') { |
&print_username_entry_form($r); |
&print_username_entry_form($r,undef,undef,undef,undef,$crstype,$brcrum); |
return; |
return; |
} |
} |
# ------------------------------------------------------- What can be assigned? |
|
my %full=(); |
my $formname = 'form1'; |
my %courselevel=(); |
my %privs=(); |
my %courselevelcurrent=(); |
my $body_top = '<h2>'; |
my $syspriv=''; |
# ------------------------------------------------------- Does this role exist? |
my $dompriv=''; |
|
my $coursepriv=''; |
|
my $body_top; |
|
my ($disp_dummy,$disp_roles) = &Apache::lonnet::get('roles',["st"]); |
|
my ($rdummy,$roledef)= |
my ($rdummy,$roledef)= |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
# ------------------------------------------------------- Does this role exist? |
|
$body_top .= '<h2>'; |
|
if (($rdummy ne 'con_lost') && ($roledef ne '')) { |
if (($rdummy ne 'con_lost') && ($roledef ne '')) { |
$body_top .= &mt('Existing Role').' "'; |
$body_top .= &mt('Existing Role').' "'; |
# ------------------------------------------------- Get current role privileges |
# ------------------------------------------------- Get current role privileges |
($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef); |
($privs{'system'},$privs{'domain'},$privs{'course'})=split(/\_/,$roledef); |
|
if ($privs{'system'} =~ /bre\&S/) { |
|
if ($context eq 'domain') { |
|
$crstype = 'Course'; |
|
} elsif ($crstype eq 'Community') { |
|
$privs{'system'} =~ s/bre\&S//; |
|
} |
|
} elsif ($context eq 'domain') { |
|
$crstype = 'Course'; |
|
} |
} else { |
} else { |
$body_top .= &mt('New Role').' "'; |
$body_top .= &mt('New Role').' "'; |
$roledef=''; |
$roledef=''; |
} |
} |
$body_top .= $rolename.'"</h2>'; |
$body_top .= $rolename.'"</h2>'; |
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict='F'; } |
|
$courselevel{$priv}=$restrict; |
|
if ($coursepriv=~/\:$priv/) { |
|
$courselevelcurrent{$priv}=1; |
|
} |
|
$full{$priv}=1; |
|
} |
|
my %domainlevel=(); |
|
my %domainlevelcurrent=(); |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict='F'; } |
|
$domainlevel{$priv}=$restrict; |
|
if ($dompriv=~/\:$priv/) { |
|
$domainlevelcurrent{$priv}=1; |
|
} |
|
$full{$priv}=1; |
|
} |
|
my %systemlevel=(); |
|
my %systemlevelcurrent=(); |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict='F'; } |
|
$systemlevel{$priv}=$restrict; |
|
if ($syspriv=~/\:$priv/) { |
|
$systemlevelcurrent{$priv}=1; |
|
} |
|
$full{$priv}=1; |
|
} |
|
my ($jsback,$elements) = &crumb_utilities(); |
|
my $button_code = "\n"; |
|
my $head_script = "\n"; |
|
$head_script .= '<script type="text/javascript">'."\n". |
|
'// <![CDATA['."\n"; |
|
my $crstype; |
|
if ($env{'request.course.id'}) { |
|
$crstype = &Apache::loncommon::course_type(); |
|
} |
|
my @template_roles = ("in","ta","ep","st"); |
|
if ($crstype eq 'Community') { |
|
unshift(@template_roles,'co'); |
|
} else { |
|
unshift(@template_roles,'cc'); |
|
} |
|
foreach my $role (@template_roles) { |
|
$head_script .= &make_script_template($role); |
|
$button_code .= &make_button_code($role,$crstype).' '; |
|
} |
|
$head_script .= "\n".$jsback."\n". |
|
'// ]]>'."\n". |
|
'</script>'."\n"; |
|
$r->print(&Apache::loncommon::start_page('Custom Role Editor',$head_script)); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>"javascript:backPage(document.form1,'pickrole','')", |
|
text=>"Pick custom role", |
|
faq=>282,bug=>'Instructor Interface',}, |
|
{href=>"javascript:backPage(document.form1,'','')", |
|
text=>"Edit custom role", |
|
faq=>282,bug=>'Instructor Interface',}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Editing_Custom_Roles')); |
|
|
|
$r->print($body_top); |
# ------------------------------------------------------- What can be assigned? |
my %lt=&Apache::lonlocal::texthash( |
my %full=(); |
'prv' => "Privilege", |
my %levels=( |
'crl' => "Course Level", |
course => {}, |
'dml' => "Domain Level", |
domain => {}, |
'ssl' => "System Level"); |
system => {}, |
|
); |
$r->print('<div>' |
my %levelscurrent=( |
.'<form action=""><fieldset>' |
course => {}, |
.'<legend>'.&mt('Select a Template').'</legend>' |
domain => {}, |
.$button_code |
system => {}, |
.'</fieldset></form>' |
); |
.'</div>' |
&Apache::lonuserutils::custom_role_privs(\%privs,\%full,\%levels,\%levelscurrent); |
); |
my ($jsback,$elements) = &crumb_utilities(); |
|
my @templateroles = &Apache::lonuserutils::custom_template_roles($context,$crstype); |
|
my $head_script = |
|
&Apache::lonuserutils::custom_roledefs_js($context,$crstype,$formname, |
|
\%full,\@templateroles,$jsback); |
|
push (@{$brcrum}, |
|
{href => "javascript:backPage(document.$formname,'pickrole','')", |
|
text => "Pick custom role", |
|
faq => 282,bug=>'Instructor Interface',}, |
|
{href => "javascript:backPage(document.$formname,'','')", |
|
text => "Edit custom role", |
|
faq => 282, |
|
bug => 'Instructor Interface', |
|
help => 'Course_Editing_Custom_Roles'} |
|
); |
|
my $args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'User Management'}; |
|
|
|
$r->print(&Apache::loncommon::start_page('Custom Role Editor', |
|
$head_script,$args). |
|
$body_top); |
|
$r->print('<form name="'.$formname.'" method="post" action="">'."\n". |
|
&Apache::lonuserutils::custom_role_header($context,$crstype, |
|
\@templateroles,$prefix)); |
|
|
$r->print(<<ENDCCF); |
$r->print(<<ENDCCF); |
<form name="form1" method="post"> |
|
<input type="hidden" name="phase" value="set_custom_roles" /> |
<input type="hidden" name="phase" value="set_custom_roles" /> |
<input type="hidden" name="rolename" value="$rolename" /> |
<input type="hidden" name="rolename" value="$rolename" /> |
ENDCCF |
ENDCCF |
$r->print(&Apache::loncommon::start_data_table(). |
$r->print(&Apache::lonuserutils::custom_role_table($crstype,\%full,\%levels, |
&Apache::loncommon::start_data_table_header_row(). |
\%levelscurrent,$prefix)); |
'<th>'.$lt{'prv'}.'</th><th>'.$lt{'crl'}.'</th><th>'.$lt{'dml'}. |
|
'</th><th>'.$lt{'ssl'}.'</th>'. |
|
&Apache::loncommon::end_data_table_header_row()); |
|
foreach my $priv (sort keys %full) { |
|
my $privtext = &Apache::lonnet::plaintext($priv,$crstype); |
|
$r->print(&Apache::loncommon::start_data_table_row(). |
|
'<td>'.$privtext.'</td><td>'. |
|
($courselevel{$priv}?'<input type="checkbox" name="'.$priv.'_c"'. |
|
($courselevelcurrent{$priv}?' checked="checked"':'').' />':' '). |
|
'</td><td>'. |
|
($domainlevel{$priv}?'<input type="checkbox" name="'.$priv.'_d"'. |
|
($domainlevelcurrent{$priv}?' checked="checked"':'').' />':' '). |
|
'</td><td>'. |
|
($systemlevel{$priv}?'<input type="checkbox" name="'.$priv.'_s"'. |
|
($systemlevelcurrent{$priv}?' checked="checked"':'').' />':' '). |
|
'</td>'. |
|
&Apache::loncommon::end_data_table_row()); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table(). |
$r->print(&Apache::loncommon::end_data_table(). |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'. |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'. |
'<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}. |
'<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}. |
'" />'."\n".'<input type="hidden" name="currstate" value="" />'."\n". |
'" />'."\n".'<input type="hidden" name="currstate" value="" />'."\n". |
'<input type="reset" value="'.&mt("Reset").'" />'."\n". |
'<input type="reset" value="'.&mt("Reset").'" />'."\n". |
'<input type="submit" value="'.&mt('Save').'" /></form>'. |
'<input type="submit" value="'.&mt('Save').'" /></form>'); |
&Apache::loncommon::end_page()); |
|
} |
|
# -------------------------------------------------------- |
|
sub make_script_template { |
|
my ($role) = @_; |
|
my %full_c=(); |
|
my %full_d=(); |
|
my %full_s=(); |
|
my $return_script; |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_c{$priv}=1; |
|
} |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_d{$priv}=1; |
|
} |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_s{$priv}=1; |
|
} |
|
$return_script .= 'function set_'.$role.'() {'."\n"; |
|
my @temp = split(/:/,$Apache::lonnet::pr{$role.':c'}); |
|
my %role_c; |
|
foreach my $priv (@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_c{$priv_item} = 1; |
|
} |
|
my %role_d; |
|
@temp = split(/:/,$Apache::lonnet::pr{$role.':d'}); |
|
foreach my $priv(@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_d{$priv_item} = 1; |
|
} |
|
my %role_s; |
|
@temp = split(/:/,$Apache::lonnet::pr{$role.':s'}); |
|
foreach my $priv(@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_s{$priv_item} = 1; |
|
} |
|
foreach my $priv_item (keys(%full_c)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if ((exists($role_c{$priv})) || (exists($role_d{$priv})) || |
|
(exists($role_s{$priv}))) { |
|
$return_script .= "document.form1.$priv"."_c.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_c.checked = false;\n"; |
|
} |
|
} |
|
foreach my $priv_item (keys(%full_d)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if ((exists($role_d{$priv})) || (exists($role_s{$priv}))) { |
|
$return_script .= "document.form1.$priv"."_d.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_d.checked = false;\n"; |
|
} |
|
} |
|
foreach my $priv_item (keys(%full_s)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if (exists($role_s{$priv})) { |
|
$return_script .= "document.form1.$priv"."_s.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_s.checked = false;\n"; |
|
} |
|
} |
|
$return_script .= '}'."\n"; |
|
return ($return_script); |
|
} |
|
# ---------------------------------------------------------- |
|
sub make_button_code { |
|
my ($role,$crstype) = @_; |
|
my $label = &Apache::lonnet::plaintext($role,$crstype); |
|
my $button_code = '<input type="button" onclick="set_'.$role.'()" value="'.$label.'" />'; |
|
return ($button_code); |
|
} |
} |
|
|
# ---------------------------------------------------------- Call to definerole |
# ---------------------------------------------------------- Call to definerole |
sub set_custom_role { |
sub set_custom_role { |
my ($r,$context) = @_; |
my ($r,$context,$brcrum,$prefix) = @_; |
my $rolename=$env{'form.rolename'}; |
my $rolename=$env{'form.rolename'}; |
$rolename=~s/[^A-Za-z0-9]//gs; |
$rolename=~s/[^A-Za-z0-9]//gs; |
if (!$rolename) { |
if (!$rolename) { |
&custom_role_editor($r); |
&custom_role_editor($r,$brcrum,$prefix); |
return; |
return; |
} |
} |
my ($jsback,$elements) = &crumb_utilities(); |
my ($jsback,$elements) = &crumb_utilities(); |
my $jscript = '<script type="text/javascript">'. |
my $jscript = '<script type="text/javascript">' |
'// <![CDATA['."\n". |
.'// <![CDATA['."\n" |
$jsback."\n". |
.$jsback."\n" |
'// ]]>'."\n". |
.'// ]]>'."\n" |
'</script>'; |
.'</script>'."\n"; |
|
push(@{$brcrum}, |
$r->print(&Apache::loncommon::start_page('Save Custom Role'),$jscript); |
{href => "javascript:backPage(document.customresult,'pickrole','')", |
&Apache::lonhtmlcommon::add_breadcrumb |
text => "Pick custom role", |
({href=>"javascript:backPage(document.customresult,'pickrole','')", |
faq => 282, |
text=>"Pick custom role", |
bug => 'Instructor Interface',}, |
faq=>282,bug=>'Instructor Interface',}, |
{href => "javascript:backPage(document.customresult,'selected_custom_edit','')", |
{href=>"javascript:backPage(document.customresult,'selected_custom_edit','')", |
text => "Edit custom role", |
text=>"Edit custom role", |
faq => 282, |
faq=>282,bug=>'Instructor Interface',}, |
bug => 'Instructor Interface',}, |
{href=>"javascript:backPage(document.customresult,'set_custom_roles','')", |
{href => "javascript:backPage(document.customresult,'set_custom_roles','')", |
text=>"Result", |
text => "Result", |
faq=>282,bug=>'Instructor Interface',}); |
faq => 282, |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
bug => 'Instructor Interface', |
'Course_Editing_Custom_Roles')); |
help => 'Course_Editing_Custom_Roles'}, |
|
); |
|
my $args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'User Management'}; |
|
$r->print(&Apache::loncommon::start_page('Save Custom Role',$jscript,$args)); |
|
|
|
my $newrole; |
my ($rdummy,$roledef)= |
my ($rdummy,$roledef)= |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
|
|
Line 3731 sub set_custom_role {
|
Line 4472 sub set_custom_role {
|
} else { |
} else { |
$r->print(&mt('New Role').' "'); |
$r->print(&mt('New Role').' "'); |
$roledef=''; |
$roledef=''; |
|
$newrole = 1; |
} |
} |
$r->print($rolename.'"</h3>'); |
$r->print($rolename.'"</h3>'); |
# ------------------------------------------------------- What can be assigned? |
# ------------------------------------------------- Assign role and show result |
my $sysrole=''; |
|
my $domrole=''; |
|
my $courole=''; |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict=''; } |
|
if ($env{'form.'.$priv.'_c'}) { |
|
$courole.=':'.$item; |
|
} |
|
} |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict=''; } |
|
if ($env{'form.'.$priv.'_d'}) { |
|
$domrole.=':'.$item; |
|
} |
|
} |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
my $errmsg; |
my ($priv,$restrict)=split(/\&/,$item); |
my %newprivs = &Apache::lonuserutils::custom_role_update($rolename,$prefix); |
if (!$restrict) { $restrict=''; } |
# Assign role and return result |
if ($env{'form.'.$priv.'_s'}) { |
my $result = &Apache::lonnet::definerole($rolename,$newprivs{'s'},$newprivs{'d'}, |
$sysrole.=':'.$item; |
$newprivs{'c'}); |
} |
if ($result ne 'ok') { |
} |
$errmsg = ': '.$result; |
$r->print('<br />Defining Role: '. |
} |
&Apache::lonnet::definerole($rolename,$sysrole,$domrole,$courole)); |
my $message = |
|
&Apache::lonhtmlcommon::confirm_success( |
|
&mt('Defining Role').$errmsg, ($result eq 'ok' ? 0 : 1)); |
if ($env{'request.course.id'}) { |
if ($env{'request.course.id'}) { |
my $url='/'.$env{'request.course.id'}; |
my $url='/'.$env{'request.course.id'}; |
$url=~s/\_/\//g; |
$url=~s/\_/\//g; |
$r->print('<br />'.&mt('Assigning Role to Self').': '. |
$result = |
&Apache::lonnet::assigncustomrole($env{'user.domain'}, |
&Apache::lonnet::assigncustomrole( |
$env{'user.name'}, |
$env{'user.domain'},$env{'user.name'}, |
$url, |
$url, |
$env{'user.domain'}, |
$env{'user.domain'},$env{'user.name'}, |
$env{'user.name'}, |
$rolename,undef,undef,undef,$context); |
$rolename,undef,undef,undef,$context)); |
if ($result ne 'ok') { |
} |
$errmsg = ': '.$result; |
$r->print('<p><a href="javascript:backPage(document.customresult,'."'pickrole'".')">'.&mt('Create or edit another custom role').'</a></p><form name="customresult" method="post">'); |
} |
$r->print(&Apache::lonhtmlcommon::echo_form_input([]).'</form>'); |
$message .= |
$r->print(&Apache::loncommon::end_page()); |
'<br />' |
|
.&Apache::lonhtmlcommon::confirm_success( |
|
&mt('Assigning Role to Self').$errmsg, ($result eq 'ok' ? 0 : 1)); |
|
} |
|
$r->print( |
|
&Apache::loncommon::confirmwrapper($message) |
|
.'<br />' |
|
.&Apache::lonhtmlcommon::actionbox([ |
|
'<a href="javascript:backPage(document.customresult,'."'pickrole'".')">' |
|
.&mt('Create or edit another custom role') |
|
.'</a>']) |
|
.'<form name="customresult" method="post" action="">' |
|
.&Apache::lonhtmlcommon::echo_form_input([]) |
|
.'</form>' |
|
); |
} |
} |
|
|
# ================================================================ Main Handler |
# ================================================================ Main Handler |
Line 3796 sub handler {
|
Line 4535 sub handler {
|
} else { |
} else { |
$context = 'domain'; |
$context = 'domain'; |
} |
} |
|
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
['action','state','callingform','roletype','showrole','bulkaction','popup','phase', |
['action','state','callingform','roletype','showrole','bulkaction','popup','phase', |
'username','domain','srchterm','srchdomain','srchin','srchby','srchtype']); |
'username','domain','srchterm','srchdomain','srchin','srchby','srchtype','queue']); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
if ($env{'form.action'} ne 'dateselect') { |
my $args; |
&Apache::lonhtmlcommon::add_breadcrumb |
my $brcrum = []; |
({href=>"/adm/createuser", |
my $bread_crumbs_component = 'User Management'; |
text=>"User Management", |
if (($env{'form.action'} ne 'dateselect') && ($env{'form.action'} ne 'displayuserreq')) { |
help=>'Course_Create_Class_List,Course_Change_Privileges,Course_View_Class_List,Course_Editing_Custom_Roles,Course_Add_Student,Course_Drop_Student,Course_Automated_Enrollment,Course_Self_Enrollment,Course_Manage_Group'}); |
$brcrum = [{href=>"/adm/createuser", |
|
text=>"User Management", |
|
help=>'Course_Create_Class_List,Course_Change_Privileges,Course_View_Class_List,Course_Editing_Custom_Roles,Course_Add_Student,Course_Drop_Student,Course_Automated_Enrollment,Course_Self_Enrollment,Course_Manage_Group'} |
|
]; |
} |
} |
#SD Following files not added to help, because the corresponding .tex-files seem to |
#SD Following files not added to help, because the corresponding .tex-files seem to |
#be missing: Course_Approve_Selfenroll,Course_User_Logs, |
#be missing: Course_Approve_Selfenroll,Course_User_Logs, |
my ($permission,$allowed) = |
my ($permission,$allowed) = |
&Apache::lonuserutils::get_permission($context,$crstype); |
&Apache::lonuserutils::get_permission($context,$crstype); |
if (!$allowed) { |
if (!$allowed) { |
|
if ($context eq 'course') { |
|
$r->internal_redirect('/adm/viewclasslist'); |
|
return OK; |
|
} |
$env{'user.error.msg'}= |
$env{'user.error.msg'}= |
"/adm/createuser:cst:0:0:Cannot create/modify user data ". |
"/adm/createuser:cst:0:0:Cannot create/modify user data ". |
"or view user status."; |
"or view user status."; |
Line 3820 sub handler {
|
Line 4567 sub handler {
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
|
|
|
my $showcredits; |
|
if ((($context eq 'course') && ($crstype eq 'Course')) || |
|
($context eq 'domain')) { |
|
my %domdefaults = |
|
&Apache::lonnet::get_domain_defaults($env{'request.role.domain'}); |
|
if ($domdefaults{'officialcredits'} || $domdefaults{'unofficialcredits'}) { |
|
$showcredits = 1; |
|
} |
|
} |
|
|
# Main switch on form.action and form.state, as appropriate |
# Main switch on form.action and form.state, as appropriate |
if (! exists($env{'form.action'})) { |
if (! exists($env{'form.action'})) { |
$r->print(&header()); |
$args = {bread_crumbs => $brcrum, |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
$r->print(&print_main_menu($permission,$context,$crstype)); |
$r->print(&print_main_menu($permission,$context,$crstype)); |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) { |
} elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) { |
$r->print(&header()); |
push(@{$brcrum}, |
&Apache::lonhtmlcommon::add_breadcrumb |
{ href => '/adm/createuser?action=upload&state=', |
({href=>'/adm/createuser?action=upload&state=', |
text => 'Upload Users List', |
text=>"Upload Users List"}); |
help => 'Course_Create_Class_List', |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Upload Users List', |
}); |
'Course_Create_Class_List')); |
$bread_crumbs_component = 'Upload Users List'; |
|
$args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
$r->print('<form name="studentform" method="post" '. |
$r->print('<form name="studentform" method="post" '. |
'enctype="multipart/form-data" '. |
'enctype="multipart/form-data" '. |
' action="/adm/createuser">'."\n"); |
' action="/adm/createuser">'."\n"); |
if (! exists($env{'form.state'})) { |
if (! exists($env{'form.state'})) { |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
} elsif ($env{'form.state'} eq 'got_file') { |
} elsif ($env{'form.state'} eq 'got_file') { |
&Apache::lonuserutils::print_upload_manager_form($r,$context, |
&Apache::lonuserutils::print_upload_manager_form($r,$context,$permission, |
$permission,$crstype); |
$crstype,$showcredits); |
} elsif ($env{'form.state'} eq 'enrolling') { |
} elsif ($env{'form.state'} eq 'enrolling') { |
if ($env{'form.datatoken'}) { |
if ($env{'form.datatoken'}) { |
&Apache::lonuserutils::upfile_drop_add($r,$context,$permission); |
&Apache::lonuserutils::upfile_drop_add($r,$context,$permission, |
|
$showcredits); |
} |
} |
} else { |
} else { |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
} |
} |
$r->print('</form>'.&Apache::loncommon::end_page()); |
|
} elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} |
} elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} |
eq 'singlestudent')) && ($permission->{'cusr'})) { |
eq 'singlestudent')) && ($permission->{'cusr'})) { |
my $phase = $env{'form.phase'}; |
my $phase = $env{'form.phase'}; |
Line 3863 sub handler {
|
Line 4623 sub handler {
|
if ($env{'form.phase'} eq 'createnewuser') { |
if ($env{'form.phase'} eq 'createnewuser') { |
my $response; |
my $response; |
if ($env{'form.srchterm'} !~ /^$match_username$/) { |
if ($env{'form.srchterm'} !~ /^$match_username$/) { |
my $response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @'); |
my $response = |
|
'<span class="LC_warning">' |
|
.&mt('You must specify a valid username. Only the following are allowed:' |
|
.' letters numbers - . @') |
|
.'</span>'; |
$env{'form.phase'} = ''; |
$env{'form.phase'} = ''; |
&print_username_entry_form($r,$context,$response,$srch,undef,$crstype); |
&print_username_entry_form($r,$context,$response,$srch,undef, |
|
$crstype,$brcrum,$showcredits); |
} else { |
} else { |
my $ccuname =&LONCAPA::clean_username($srch->{'srchterm'}); |
my $ccuname =&LONCAPA::clean_username($srch->{'srchterm'}); |
my $ccdomain=&LONCAPA::clean_domain($srch->{'srchdomain'}); |
my $ccdomain=&LONCAPA::clean_domain($srch->{'srchdomain'}); |
&print_user_modification_page($r,$ccuname,$ccdomain, |
&print_user_modification_page($r,$ccuname,$ccdomain, |
$srch,$response,$context, |
$srch,$response,$context, |
$permission,$crstype); |
$permission,$crstype,$brcrum, |
|
$showcredits); |
} |
} |
} elsif ($env{'form.phase'} eq 'get_user_info') { |
} elsif ($env{'form.phase'} eq 'get_user_info') { |
my ($currstate,$response,$forcenewuser,$results) = |
my ($currstate,$response,$forcenewuser,$results) = |
Line 3881 sub handler {
|
Line 4647 sub handler {
|
} |
} |
if ($currstate eq 'select') { |
if ($currstate eq 'select') { |
&print_user_selection_page($r,$response,$srch,$results, |
&print_user_selection_page($r,$response,$srch,$results, |
\@search,$context,undef,$crstype); |
\@search,$context,undef,$crstype, |
|
$brcrum); |
} elsif ($currstate eq 'modify') { |
} elsif ($currstate eq 'modify') { |
my ($ccuname,$ccdomain); |
my ($ccuname,$ccdomain); |
if (($srch->{'srchby'} eq 'uname') && |
if (($srch->{'srchby'} eq 'uname') && |
Line 3899 sub handler {
|
Line 4666 sub handler {
|
} |
} |
&print_user_modification_page($r,$ccuname,$ccdomain, |
&print_user_modification_page($r,$ccuname,$ccdomain, |
$srch,$response,$context, |
$srch,$response,$context, |
$permission,$crstype); |
$permission,$crstype,$brcrum); |
} elsif ($currstate eq 'query') { |
} elsif ($currstate eq 'query') { |
&print_user_query_page($r,'createuser'); |
&print_user_query_page($r,'createuser',$brcrum); |
} else { |
} else { |
$env{'form.phase'} = ''; |
$env{'form.phase'} = ''; |
&print_username_entry_form($r,$context,$response,$srch, |
&print_username_entry_form($r,$context,$response,$srch, |
$forcenewuser,$crstype); |
$forcenewuser,$crstype,$brcrum); |
} |
} |
} elsif ($env{'form.phase'} eq 'userpicked') { |
} elsif ($env{'form.phase'} eq 'userpicked') { |
my $ccuname = &LONCAPA::clean_username($env{'form.seluname'}); |
my $ccuname = &LONCAPA::clean_username($env{'form.seluname'}); |
my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'}); |
my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'}); |
&print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', |
&print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', |
$context,$permission,$crstype); |
$context,$permission,$crstype, |
|
$brcrum); |
} |
} |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
&update_user_data($r,$context,$crstype); |
&update_user_data($r,$context,$crstype,$brcrum,$showcredits); |
} else { |
} else { |
&print_username_entry_form($r,$context,undef,$srch,undef,$crstype); |
&print_username_entry_form($r,$context,undef,$srch,undef,$crstype, |
|
$brcrum); |
} |
} |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
|
my $prefix; |
if ($env{'form.phase'} eq 'set_custom_roles') { |
if ($env{'form.phase'} eq 'set_custom_roles') { |
&set_custom_role($r,$context); |
&set_custom_role($r,$context,$brcrum,$prefix); |
|
} else { |
|
&custom_role_editor($r,$brcrum,$prefix); |
|
} |
|
} elsif (($env{'form.action'} eq 'processauthorreq') && |
|
($permission->{'cusr'}) && |
|
(&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) { |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=processauthorreq', |
|
text => 'Authoring Space requests', |
|
help => 'Domain_Role_Approvals'}); |
|
$bread_crumbs_component = 'Authoring requests'; |
|
if ($env{'form.state'} eq 'done') { |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=authorreqqueue', |
|
text => 'Result', |
|
help => 'Domain_Role_Approvals'}); |
|
$bread_crumbs_component = 'Authoring request result'; |
|
} |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
my $js = &usernamerequest_javascript(); |
|
$r->print(&header(&add_script($js),$args)); |
|
if (!exists($env{'form.state'})) { |
|
$r->print(&Apache::loncoursequeueadmin::display_queued_requests('requestauthor', |
|
$env{'request.role.domain'})); |
|
} elsif ($env{'form.state'} eq 'done') { |
|
$r->print('<h3>'.&mt('Authoring request processing').'</h3>'."\n"); |
|
$r->print(&Apache::loncoursequeueadmin::update_request_queue('requestauthor', |
|
$env{'request.role.domain'})); |
|
} |
|
} elsif (($env{'form.action'} eq 'processusernamereq') && |
|
($permission->{'cusr'}) && |
|
(&Apache::lonnet::allowed('cau',$env{'request.role.domain'}))) { |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=processusernamereq', |
|
text => 'LON-CAPA account requests', |
|
help => 'Domain_Username_Approvals'}); |
|
$bread_crumbs_component = 'Account requests'; |
|
if ($env{'form.state'} eq 'done') { |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=usernamereqqueue', |
|
text => 'Result', |
|
help => 'Domain_Username_Approvals'}); |
|
$bread_crumbs_component = 'LON-CAPA account request result'; |
|
} |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
my $js = &usernamerequest_javascript(); |
|
$r->print(&header(&add_script($js),$args)); |
|
if (!exists($env{'form.state'})) { |
|
$r->print(&Apache::loncoursequeueadmin::display_queued_requests('requestusername', |
|
$env{'request.role.domain'})); |
|
} elsif ($env{'form.state'} eq 'done') { |
|
$r->print('<h3>'.&mt('LON-CAPA account request processing').'</h3>'."\n"); |
|
$r->print(&Apache::loncoursequeueadmin::update_request_queue('requestusername', |
|
$env{'request.role.domain'})); |
|
} |
|
} elsif (($env{'form.action'} eq 'displayuserreq') && |
|
($permission->{'cusr'})) { |
|
my $dom = $env{'form.domain'}; |
|
my $uname = $env{'form.username'}; |
|
my $warning; |
|
if (($dom =~ /^$match_domain$/) && (&Apache::lonnet::domain($dom) ne '')) { |
|
if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) { |
|
if (($uname =~ /^$match_username$/) && ($env{'form.queue'} eq 'approval')) { |
|
my $uhome = &Apache::lonnet::homeserver($uname,$dom); |
|
if ($uhome eq 'no_host') { |
|
my $queue = $env{'form.queue'}; |
|
my $reqkey = &escape($uname).'_'.$queue; |
|
my $namespace = 'usernamequeue'; |
|
my $domconfig = &Apache::lonnet::get_domainconfiguser($dom); |
|
my %queued = |
|
&Apache::lonnet::get($namespace,[$reqkey],$dom,$domconfig); |
|
unless ($queued{$reqkey}) { |
|
$warning = &mt('No information was found for this LON-CAPA account request.'); |
|
} |
|
} else { |
|
$warning = &mt('A LON-CAPA account already exists for the requested username and domain.'); |
|
} |
|
} else { |
|
$warning = &mt('LON-CAPA account request status check is for an invalid username.'); |
|
} |
|
} else { |
|
$warning = &mt('You do not have rights to view LON-CAPA account requests in the domain specified.'); |
|
} |
} else { |
} else { |
&custom_role_editor($r); |
$warning = &mt('LON-CAPA account request status check is for an invalid domain.'); |
|
} |
|
my $args = { only_body => 1 }; |
|
$r->print(&header(undef,$args). |
|
'<h3>'.&mt('LON-CAPA Account Request Details').'</h3>'); |
|
if ($warning ne '') { |
|
$r->print('<div class="LC_warning">'.$warning.'</div>'); |
|
} else { |
|
my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info(); |
|
my $domconfiguser = &Apache::lonnet::get_domainconfiguser($dom); |
|
my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom); |
|
if (ref($domconfig{'usercreation'}) eq 'HASH') { |
|
if (ref($domconfig{'usercreation'}{'cancreate'}) eq 'HASH') { |
|
if (ref($domconfig{'usercreation'}{'cancreate'}{'emailusername'}) eq 'HASH') { |
|
my %info = |
|
&Apache::lonnet::get('nohist_requestedusernames',[$uname],$dom,$domconfiguser); |
|
if (ref($info{$uname}) eq 'HASH') { |
|
my $usertype = $info{$uname}{'inststatus'}; |
|
unless ($usertype) { |
|
$usertype = 'default'; |
|
} |
|
if (ref($domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}) eq 'HASH') { |
|
if ((ref($infofields) eq 'ARRAY') && (ref($infotitles) eq 'HASH')) { |
|
$r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box()); |
|
my ($num,$count,$showstatus); |
|
$count = scalar(keys(%{$domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}})); |
|
unless ($usertype eq 'default') { |
|
my ($othertitle,$usertypes,$types) = |
|
&Apache::loncommon::sorted_inst_types($dom); |
|
if (ref($usertypes) eq 'HASH') { |
|
if ($usertypes->{$usertype}) { |
|
$showstatus = $usertypes->{$usertype}; |
|
$count ++; |
|
} |
|
} |
|
} |
|
foreach my $field (@{$infofields}) { |
|
next unless ($domconfig{'usercreation'}{'cancreate'}{'emailusername'}{$usertype}{$field}); |
|
next unless ($infotitles->{$field}); |
|
$r->print(&Apache::lonhtmlcommon::row_title($infotitles->{$field}). |
|
$info{$uname}{$field}); |
|
$num ++; |
|
if ($count == $num) { |
|
$r->print(&Apache::lonhtmlcommon::row_closure(1)); |
|
} else { |
|
$r->print(&Apache::lonhtmlcommon::row_closure()); |
|
} |
|
} |
|
if ($showstatus) { |
|
$r->print(&Apache::lonhtmlcommon::row_title(&mt('Status type (self-reported)')). |
|
$showstatus. |
|
&Apache::lonhtmlcommon::row_closure(1)); |
|
} |
|
$r->print(&Apache::lonhtmlcommon::end_pick_box().'</div>'); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
$r->print(&close_popup_form()); |
} |
} |
} elsif (($env{'form.action'} eq 'listusers') && |
} elsif (($env{'form.action'} eq 'listusers') && |
($permission->{'view'} || $permission->{'cusr'})) { |
($permission->{'view'} || $permission->{'cusr'})) { |
if ($env{'form.phase'} eq 'bulkchange') { |
if ($env{'form.phase'} eq 'bulkchange') { |
&Apache::lonhtmlcommon::add_breadcrumb |
push(@{$brcrum}, |
({href=>'/adm/createuser?action=listusers', |
{href => '/adm/createuser?action=listusers', |
text=>"List Users"}, |
text => "List Users"}, |
{href=>"/adm/createuser", |
{href => "/adm/createuser", |
text=>"Result"}); |
text => "Result", |
|
help => 'Course_View_Class_List'}); |
|
$bread_crumbs_component = 'Update Users'; |
|
$args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
my $setting = $env{'form.roletype'}; |
my $setting = $env{'form.roletype'}; |
my $choice = $env{'form.bulkaction'}; |
my $choice = $env{'form.bulkaction'}; |
$r->print(&header()); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Update Users", |
|
'Course_View_Class_List')); |
|
if ($permission->{'cusr'}) { |
if ($permission->{'cusr'}) { |
&Apache::lonuserutils::update_user_list($r,$context,$setting,$choice); |
&Apache::lonuserutils::update_user_list($r,$context,$setting,$choice,$crstype); |
$r->print(&Apache::loncommon::end_page()); |
|
} else { |
} else { |
$r->print(&mt('You are not authorized to make bulk changes to user roles')); |
$r->print(&mt('You are not authorized to make bulk changes to user roles')); |
$r->print('<p><a href="/adm/createuser?action=listusers">'.&mt('Display User Lists').'</a>'); |
$r->print('<p><a href="/adm/createuser?action=listusers">'.&mt('Display User Lists').'</a>'); |
$r->print(&Apache::loncommon::end_page()); |
|
} |
} |
} else { |
} else { |
&Apache::lonhtmlcommon::add_breadcrumb |
push(@{$brcrum}, |
({href=>'/adm/createuser?action=listusers', |
{href => '/adm/createuser?action=listusers', |
text=>"List Users"}); |
text => "List Users", |
|
help => 'Course_View_Class_List'}); |
|
$bread_crumbs_component = 'List Users'; |
|
$args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles); |
my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles); |
my $formname = 'studentform'; |
my $formname = 'studentform'; |
|
my $hidecall = "hide_searching();"; |
if (($context eq 'domain') && (($env{'form.roletype'} eq 'course') || |
if (($context eq 'domain') && (($env{'form.roletype'} eq 'course') || |
($env{'form.roletype'} eq 'community'))) { |
($env{'form.roletype'} eq 'community'))) { |
if ($env{'form.roletype'} eq 'course') { |
if ($env{'form.roletype'} eq 'course') { |
($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = |
($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = |
&Apache::lonuserutils::courses_selector($env{'request.role.domain'}, |
&Apache::lonuserutils::courses_selector($env{'request.role.domain'}, |
$formname); |
$formname); |
} elsif ($env{'form.roletype'} eq 'community') { |
} elsif ($env{'form.roletype'} eq 'community') { |
$cb_jscript = |
$cb_jscript = |
&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}); |
&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}); |
my %elements = ( |
my %elements = ( |
coursepick => 'radio', |
coursepick => 'radio', |
Line 3967 sub handler {
|
Line 4887 sub handler {
|
); |
); |
$jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements); |
$jscript = &Apache::lonhtmlcommon::set_form_elements(\%elements); |
} |
} |
$jscript .= &verify_user_display(); |
$jscript .= &verify_user_display($context)."\n". |
|
&Apache::loncommon::check_uncheck_jscript(); |
my $js = &add_script($jscript).$cb_jscript; |
my $js = &add_script($jscript).$cb_jscript; |
my $loadcode = |
my $loadcode = |
&Apache::lonuserutils::course_selector_loadcode($formname); |
&Apache::lonuserutils::course_selector_loadcode($formname); |
if ($loadcode ne '') { |
if ($loadcode ne '') { |
$r->print(&header($js,{'onload' => $loadcode,})); |
$args->{add_entries} = {onload => "$loadcode;$hidecall"}; |
} else { |
} else { |
$r->print(&header($js)); |
$args->{add_entries} = {onload => $hidecall}; |
} |
} |
|
$r->print(&header($js,$args)); |
} else { |
} else { |
$r->print(&header(&add_script(&verify_user_display()))); |
$args->{add_entries} = {onload => $hidecall}; |
|
$jscript = &verify_user_display($context). |
|
&Apache::loncommon::check_uncheck_jscript(); |
|
$r->print(&header(&add_script($jscript),$args)); |
} |
} |
$r->print(&Apache::lonhtmlcommon::breadcrumbs("List Users", |
|
'Course_View_Class_List')); |
|
&Apache::lonuserutils::print_userlist($r,undef,$permission,$context, |
&Apache::lonuserutils::print_userlist($r,undef,$permission,$context, |
$formname,$totcodes,$codetitles,$idlist,$idlist_titles); |
$formname,$totcodes,$codetitles,$idlist,$idlist_titles, |
$r->print(&Apache::loncommon::end_page()); |
$showcredits); |
} |
} |
} elsif ($env{'form.action'} eq 'drop' && $permission->{'cusr'}) { |
} elsif ($env{'form.action'} eq 'drop' && $permission->{'cusr'}) { |
$r->print(&header()); |
|
my $brtext; |
my $brtext; |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$brtext = 'Drop Members'; |
$brtext = 'Drop Members'; |
} else { |
} else { |
$brtext = 'Drop Students'; |
$brtext = 'Drop Students'; |
} |
} |
&Apache::lonhtmlcommon::add_breadcrumb |
push(@{$brcrum}, |
({href=>'/adm/createuser?action=drop', |
{href => '/adm/createuser?action=drop', |
text=>$brtext}); |
text => $brtext, |
|
help => 'Course_Drop_Student'}); |
|
if ($env{'form.state'} eq 'done') { |
|
push(@{$brcrum}, |
|
{href=>'/adm/createuser?action=drop', |
|
text=>"Result"}); |
|
} |
|
$bread_crumbs_component = $brtext; |
|
$args = {bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
if (!exists($env{'form.state'})) { |
if (!exists($env{'form.state'})) { |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Drop Students', |
|
'Course_Drop_Student')); |
|
|
|
&Apache::lonuserutils::print_drop_menu($r,$context,$permission,$crstype); |
&Apache::lonuserutils::print_drop_menu($r,$context,$permission,$crstype); |
} elsif ($env{'form.state'} eq 'done') { |
} elsif ($env{'form.state'} eq 'done') { |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=drop', |
|
text=>"Result"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs($brtext, |
|
'Course_Drop_Student')); |
|
&Apache::lonuserutils::update_user_list($r,$context,undef, |
&Apache::lonuserutils::update_user_list($r,$context,undef, |
$env{'form.action'}); |
$env{'form.action'}); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'dateselect') { |
} elsif ($env{'form.action'} eq 'dateselect') { |
if ($permission->{'cusr'}) { |
if ($permission->{'cusr'}) { |
$r->print(&header(undef,undef,{'no_nav_bar' => 1}). |
$r->print(&header(undef,{'no_nav_bar' => 1}). |
&Apache::lonuserutils::date_section_selector($context, |
&Apache::lonuserutils::date_section_selector($context,$permission, |
$permission,$crstype). |
$crstype,$showcredits)); |
&Apache::loncommon::end_page()); |
} else { |
} else { |
$r->print(&header(undef,{'no_nav_bar' => 1}). |
$r->print(&header(). |
'<span class="LC_error">'.&mt('You do not have permission to modify dates or sections for users').'</span>'); |
'<span class="LC_error">'.&mt('You do not have permission to modify dates or sections for users').'</span>'. |
|
&Apache::loncommon::end_page()); |
|
} |
} |
} elsif ($env{'form.action'} eq 'selfenroll') { |
} elsif ($env{'form.action'} eq 'selfenroll') { |
$r->print(&header()); |
if ($permission->{selfenrolladmin}) { |
&Apache::lonhtmlcommon::add_breadcrumb |
my $cid = $env{'request.course.id'}; |
({href=>'/adm/createuser?action=selfenroll', |
my $cdom = $env{'course.'.$cid.'.domain'}; |
text=>"Configure Self-enrollment"}); |
my $cnum = $env{'course.'.$cid.'.num'}; |
if (!exists($env{'form.state'})) { |
my %currsettings = ( |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Configure Self-enrollment', |
selfenroll_types => $env{'course.'.$cid.'.internal.selfenroll_types'}, |
'Course_Self_Enrollment')); |
selfenroll_registered => $env{'course.'.$cid.'.internal.selfenroll_registered'}, |
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
selfenroll_section => $env{'course.'.$cid.'.internal.selfenroll_section'}, |
&print_selfenroll_menu($r,$context,$permission); |
selfenroll_notifylist => $env{'course.'.$cid.'.internal.selfenroll_notifylist'}, |
} elsif ($env{'form.state'} eq 'done') { |
selfenroll_approval => $env{'course.'.$cid.'.internal.selfenroll_approval'}, |
&Apache::lonhtmlcommon::add_breadcrumb |
selfenroll_limit => $env{'course.'.$cid.'.internal.selfenroll_limit'}, |
({href=>'/adm/createuser?action=selfenroll', |
selfenroll_cap => $env{'course.'.$cid.'.internal.selfenroll_cap'}, |
text=>"Result"}); |
selfenroll_start_date => $env{'course.'.$cid.'.internal.selfenroll_start_date'}, |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Self-enrollment result', |
selfenroll_end_date => $env{'course.'.$cid.'.internal.selfenroll_end_date'}, |
'Course_Self_Enrollment')); |
selfenroll_start_access => $env{'course.'.$cid.'.internal.selfenroll_start_access'}, |
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
selfenroll_end_access => $env{'course.'.$cid.'.internal.selfenroll_end_access'}, |
&update_selfenroll_config($r,$context,$permission); |
default_enrollment_start_date => $env{'course.'.$cid.'.default_enrollment_start_date'}, |
|
default_enrollment_end_date => $env{'course.'.$cid.'.default_enrollment_end_date'}, |
|
uniquecode => $env{'course.'.$cid.'.internal.uniquecode'}, |
|
); |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=selfenroll', |
|
text => "Configure Self-enrollment", |
|
help => 'Course_Self_Enrollment'}); |
|
if (!exists($env{'form.state'})) { |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'Configure Self-enrollment'}; |
|
$r->print(&header(undef,$args)); |
|
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
|
&print_selfenroll_menu($r,'course',$cid,$cdom,$cnum,\%currsettings); |
|
} elsif ($env{'form.state'} eq 'done') { |
|
push (@{$brcrum}, |
|
{href=>'/adm/createuser?action=selfenroll', |
|
text=>"Result"}); |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'Self-enrollment result'}; |
|
$r->print(&header(undef,$args)); |
|
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
|
&update_selfenroll_config($r,$cid,$cdom,$cnum,$context,$crstype,\%currsettings); |
|
} |
|
} else { |
|
$r->print(&header(undef,{'no_nav_bar' => 1}). |
|
'<span class="LC_error">'.&mt('You do not have permission to configure self-enrollment').'</span>'); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'selfenrollqueue') { |
} elsif ($env{'form.action'} eq 'selfenrollqueue') { |
$r->print(&header()); |
push(@{$brcrum}, |
&Apache::lonhtmlcommon::add_breadcrumb |
{href => '/adm/createuser?action=selfenrollqueue', |
({href=>'/adm/createuser?action=selfenrollqueue', |
text => 'Enrollment requests', |
text=>"Enrollment requests"}); |
help => 'Course_Self_Enrollment'}); |
|
$bread_crumbs_component = 'Enrollment requests'; |
|
if ($env{'form.state'} eq 'done') { |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=selfenrollqueue', |
|
text => 'Result', |
|
help => 'Course_Self_Enrollment'}); |
|
$bread_crumbs_component = 'Enrollment result'; |
|
} |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
my $cid = $env{'request.course.id'}; |
my $cid = $env{'request.course.id'}; |
my $cdom = $env{'course.'.$cid.'.domain'}; |
my $cdom = $env{'course.'.$cid.'.domain'}; |
my $cnum = $env{'course.'.$cid.'.num'}; |
my $cnum = $env{'course.'.$cid.'.num'}; |
my $coursedesc = $env{'course.'.$cid.'.description'}; |
my $coursedesc = $env{'course.'.$cid.'.description'}; |
if (!exists($env{'form.state'})) { |
if (!exists($env{'form.state'})) { |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Enrollment requests', |
|
'Course_SelfEnrollment_Approval')); |
|
$r->print('<h3>'.&mt('Pending enrollment requests').'</h3>'."\n"); |
$r->print('<h3>'.&mt('Pending enrollment requests').'</h3>'."\n"); |
$r->print(&Apache::loncoursequeueadmin::display_queued_requests($context, |
$r->print(&Apache::loncoursequeueadmin::display_queued_requests($context, |
$cdom,$cnum)); |
$cdom,$cnum)); |
|
|
} elsif ($env{'form.state'} eq 'done') { |
} elsif ($env{'form.state'} eq 'done') { |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=selfenrollqueue', |
|
text=>"Result"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Enrollment result', |
|
'Course_Self_Enrollment')); |
|
$r->print('<h3>'.&mt('Enrollment request processing').'</h3>'."\n"); |
$r->print('<h3>'.&mt('Enrollment request processing').'</h3>'."\n"); |
$r->print(&Apache::loncoursequeueadmin::update_request_queue($context, |
$r->print(&Apache::loncoursequeueadmin::update_request_queue($context, |
$cdom,$cnum,$coursedesc)); |
$cdom,$cnum,$coursedesc)); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'changelogs') { |
} elsif ($env{'form.action'} eq 'changelogs') { |
$r->print(&header()); |
&print_userchangelogs_display($r,$context,$permission,$brcrum); |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=changelogs', |
|
text=>"User Management Logs"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Changes', |
|
'Course_User_Logs')); |
|
&print_userchangelogs_display($r,$context,$permission); |
|
$r->print(&Apache::loncommon::end_page()); |
|
} else { |
} else { |
$r->print(&header()); |
$bread_crumbs_component = 'User Management'; |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
$r->print(&print_main_menu($permission,$context,$crstype)); |
$r->print(&print_main_menu($permission,$context,$crstype)); |
$r->print(&Apache::loncommon::end_page()); |
|
} |
} |
|
$r->print(&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|
sub header { |
sub header { |
my ($jscript,$loaditems,$args) = @_; |
my ($jscript,$args) = @_; |
my $start_page; |
my $start_page; |
if (ref($loaditems) eq 'HASH') { |
if (ref($args) eq 'HASH') { |
$start_page=&Apache::loncommon::start_page('User Management',$jscript,{'add_entries' => $loaditems}); |
|
} else { |
|
$start_page=&Apache::loncommon::start_page('User Management',$jscript,$args); |
$start_page=&Apache::loncommon::start_page('User Management',$jscript,$args); |
|
} else { |
|
$start_page=&Apache::loncommon::start_page('User Management',$jscript); |
} |
} |
return $start_page; |
return $start_page; |
} |
} |
|
|
sub add_script { |
sub add_script { |
my ($js) = @_; |
my ($js) = @_; |
return '<script type="text/javascript">'."\n". |
return '<script type="text/javascript">'."\n" |
'// <![CDATA['."\n". |
.'// <![CDATA['."\n" |
"\n".$js."\n". |
.$js."\n" |
'// ]]>'."\n". |
.'// ]]>'."\n" |
'</script>'."\n"; |
.'</script>'."\n"; |
|
} |
|
|
|
sub usernamerequest_javascript { |
|
my $js = <<ENDJS; |
|
|
|
function openusernamereqdisplay(dom,uname,queue) { |
|
var url = '/adm/createuser?action=displayuserreq'; |
|
url += '&domain='+dom+'&username='+uname+'&queue='+queue; |
|
var title = 'Account_Request_Browser'; |
|
var options = 'scrollbars=1,resizable=1,menubar=0'; |
|
options += ',width=700,height=600'; |
|
var stdeditbrowser = open(url,title,options,'1'); |
|
stdeditbrowser.focus(); |
|
return; |
|
} |
|
|
|
ENDJS |
|
} |
|
|
|
sub close_popup_form { |
|
my $close= &mt('Close Window'); |
|
return << "END"; |
|
<p><form name="displayreq" action="" method="post"> |
|
<input type="button" name="closeme" value="$close" onclick="javascript:self.close();" /> |
|
</form></p> |
|
END |
} |
} |
|
|
sub verify_user_display { |
sub verify_user_display { |
|
my ($context) = @_; |
|
my %lt = &Apache::lonlocal::texthash ( |
|
course => 'course(s): description, section(s), status', |
|
community => 'community(s): description, section(s), status', |
|
author => 'author', |
|
); |
|
my $photos; |
|
if (($context eq 'course') && $env{'request.course.id'}) { |
|
$photos = $env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}; |
|
} |
my $output = <<"END"; |
my $output = <<"END"; |
|
|
|
function hide_searching() { |
|
if (document.getElementById('searching')) { |
|
document.getElementById('searching').style.display = 'none'; |
|
} |
|
return; |
|
} |
|
|
function display_update() { |
function display_update() { |
document.studentform.action.value = 'listusers'; |
document.studentform.action.value = 'listusers'; |
document.studentform.phase.value = 'display'; |
document.studentform.phase.value = 'display'; |
document.studentform.submit(); |
document.studentform.submit(); |
} |
} |
|
|
|
function updateCols(caller) { |
|
var context = '$context'; |
|
var photos = '$photos'; |
|
if (caller == 'Status') { |
|
if ((context == 'domain') && |
|
((document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'course') || |
|
(document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community'))) { |
|
document.getElementById('showcolstatus').checked = false; |
|
document.getElementById('showcolstatus').disabled = 'disabled'; |
|
document.getElementById('showcolstart').checked = false; |
|
document.getElementById('showcolend').checked = false; |
|
} else { |
|
if (document.studentform.Status.options[document.studentform.Status.selectedIndex].value == 'Any') { |
|
document.getElementById('showcolstatus').checked = true; |
|
document.getElementById('showcolstatus').disabled = ''; |
|
document.getElementById('showcolstart').checked = true; |
|
document.getElementById('showcolend').checked = true; |
|
} else { |
|
document.getElementById('showcolstatus').checked = false; |
|
document.getElementById('showcolstatus').disabled = 'disabled'; |
|
document.getElementById('showcolstart').checked = false; |
|
document.getElementById('showcolend').checked = false; |
|
} |
|
} |
|
} |
|
if (caller == 'output') { |
|
if (photos == 1) { |
|
if (document.getElementById('showcolphoto')) { |
|
var photoitem = document.getElementById('showcolphoto'); |
|
if (document.studentform.output.options[document.studentform.output.selectedIndex].value == 'html') { |
|
photoitem.checked = true; |
|
photoitem.disabled = ''; |
|
} else { |
|
photoitem.checked = false; |
|
photoitem.disabled = 'disabled'; |
|
} |
|
} |
|
} |
|
} |
|
if (caller == 'showrole') { |
|
if ((document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'Any') || |
|
(document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'cr')) { |
|
document.getElementById('showcolrole').checked = true; |
|
document.getElementById('showcolrole').disabled = ''; |
|
} else { |
|
document.getElementById('showcolrole').checked = false; |
|
document.getElementById('showcolrole').disabled = 'disabled'; |
|
} |
|
if (context == 'domain') { |
|
var quotausageshow = 0; |
|
if ((document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'course') || |
|
(document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community')) { |
|
document.getElementById('showcolstatus').checked = false; |
|
document.getElementById('showcolstatus').disabled = 'disabled'; |
|
document.getElementById('showcolstart').checked = false; |
|
document.getElementById('showcolend').checked = false; |
|
} else { |
|
if (document.studentform.Status.options[document.studentform.Status.selectedIndex].value == 'Any') { |
|
document.getElementById('showcolstatus').checked = true; |
|
document.getElementById('showcolstatus').disabled = ''; |
|
document.getElementById('showcolstart').checked = true; |
|
document.getElementById('showcolend').checked = true; |
|
} |
|
} |
|
if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'domain') { |
|
document.getElementById('showcolextent').disabled = 'disabled'; |
|
document.getElementById('showcolextent').checked = 'false'; |
|
document.getElementById('showextent').style.display='none'; |
|
document.getElementById('showcoltextextent').innerHTML = ''; |
|
if ((document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'au') || |
|
(document.studentform.showrole.options[document.studentform.showrole.selectedIndex].value == 'Any')) { |
|
if (document.getElementById('showcolauthorusage')) { |
|
document.getElementById('showcolauthorusage').disabled = ''; |
|
} |
|
if (document.getElementById('showcolauthorquota')) { |
|
document.getElementById('showcolauthorquota').disabled = ''; |
|
} |
|
quotausageshow = 1; |
|
} |
|
} else { |
|
document.getElementById('showextent').style.display='block'; |
|
document.getElementById('showextent').style.textAlign='left'; |
|
document.getElementById('showextent').style.textFace='normal'; |
|
if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'author') { |
|
document.getElementById('showcolextent').disabled = ''; |
|
document.getElementById('showcolextent').checked = 'true'; |
|
document.getElementById('showcoltextextent').innerHTML="$lt{'author'}"; |
|
} else { |
|
document.getElementById('showcolextent').disabled = ''; |
|
document.getElementById('showcolextent').checked = 'true'; |
|
if (document.studentform.roletype.options[document.studentform.roletype.selectedIndex].value == 'community') { |
|
document.getElementById('showcoltextextent').innerHTML="$lt{'community'}"; |
|
} else { |
|
document.getElementById('showcoltextextent').innerHTML="$lt{'course'}"; |
|
} |
|
} |
|
} |
|
if (quotausageshow == 0) { |
|
if (document.getElementById('showcolauthorusage')) { |
|
document.getElementById('showcolauthorusage').checked = false; |
|
document.getElementById('showcolauthorusage').disabled = 'disabled'; |
|
} |
|
if (document.getElementById('showcolauthorquota')) { |
|
document.getElementById('showcolauthorquota').checked = false; |
|
document.getElementById('showcolauthorquota').disabled = 'disabled'; |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
END |
END |
return $output; |
return $output; |
|
|
Line 4132 sub print_main_menu {
|
Line 5230 sub print_main_menu {
|
$linkcontext = lc($crstype); |
$linkcontext = lc($crstype); |
$stuterm = 'Members'; |
$stuterm = 'Members'; |
} |
} |
|
|
my %links = ( |
my %links = ( |
domain => { |
domain => { |
upload => 'Upload a File of Users', |
upload => 'Upload a File of Users', |
singleuser => 'Add/Modify a Single User', |
singleuser => 'Add/Modify a User', |
listusers => 'Manage Multiple Users', |
listusers => 'Manage Users', |
}, |
}, |
author => { |
author => { |
upload => 'Upload a File of Co-authors', |
upload => 'Upload a File of Co-authors', |
singleuser => 'Add/Modify a Single Co-author', |
singleuser => 'Add/Modify a Co-author', |
listusers => 'Display Co-authors and Manage Multiple Users', |
listusers => 'Manage Co-authors', |
}, |
}, |
course => { |
course => { |
upload => 'Upload a File of Course Users', |
upload => 'Upload a File of Course Users', |
singleuser => 'Add/Modify a Single Course User', |
singleuser => 'Add/Modify a Course User', |
listusers => 'Display Class Lists and Manage Multiple Users', |
listusers => 'List and Modify Multiple Course Users', |
}, |
}, |
community => { |
community => { |
upload => 'Upload a File of Community Users', |
upload => 'Upload a File of Community Users', |
singleuser => 'Add/Modify a Community User', |
singleuser => 'Add/Modify a Community User', |
listusers => 'Manage Community Users', |
listusers => 'List and Modify Multiple Community Users', |
}, |
}, |
|
); |
|
my %linktitles = ( |
|
domain => { |
|
singleuser => 'Add a user to the domain, and/or a course or community in the domain.', |
|
listusers => 'Show and manage users in this domain.', |
|
}, |
|
author => { |
|
singleuser => 'Add a user with a co- or assistant author role.', |
|
listusers => 'Show and manage co- or assistant authors.', |
|
}, |
|
course => { |
|
singleuser => 'Add a user with a certain role to this course.', |
|
listusers => 'Show and manage users in this course.', |
|
}, |
|
community => { |
|
singleuser => 'Add a user with a certain role to this community.', |
|
listusers => 'Show and manage users in this community.', |
|
}, |
); |
); |
my @menu = |
my @menu = ( {categorytitle => 'Single Users', |
( |
items => |
{ text => $links{$context}{'upload'}, |
[ |
help => 'Course_Create_Class_List', |
{ |
action => 'upload', |
linktext => $links{$linkcontext}{'singleuser'}, |
permission => $permission->{'cusr'}, |
icon => 'edit-redo.png', |
|
#help => 'Course_Change_Privileges', |
|
url => '/adm/createuser?action=singleuser', |
|
permission => $permission->{'cusr'}, |
|
linktitle => $linktitles{$linkcontext}{'singleuser'}, |
}, |
}, |
{ text => $links{$context}{'singleuser'}, |
]}, |
help => 'Course_Change_Privileges', |
|
action => 'singleuser', |
{categorytitle => 'Multiple Users', |
permission => $permission->{'cusr'}, |
items => |
|
[ |
|
{ |
|
linktext => $links{$linkcontext}{'upload'}, |
|
icon => 'uplusr.png', |
|
#help => 'Course_Create_Class_List', |
|
url => '/adm/createuser?action=upload', |
|
permission => $permission->{'cusr'}, |
|
linktitle => 'Upload a CSV or a text file containing users.', |
|
}, |
|
{ |
|
linktext => $links{$linkcontext}{'listusers'}, |
|
icon => 'mngcu.png', |
|
#help => 'Course_View_Class_List', |
|
url => '/adm/createuser?action=listusers', |
|
permission => ($permission->{'view'} || $permission->{'cusr'}), |
|
linktitle => $linktitles{$linkcontext}{'listusers'}, |
|
}, |
|
|
|
]}, |
|
|
|
{categorytitle => 'Administration', |
|
items => [ ]}, |
|
); |
|
|
|
if ($context eq 'domain'){ |
|
|
|
push(@{ $menu[2]->{items} }, #Category: Administration |
|
{ |
|
linktext => 'Custom Roles', |
|
icon => 'emblem-photos.png', |
|
#help => 'Course_Editing_Custom_Roles', |
|
url => '/adm/createuser?action=custom', |
|
permission => $permission->{'custom'}, |
|
linktitle => 'Configure a custom role.', |
|
}, |
|
{ |
|
linktext => 'Authoring Space Requests', |
|
icon => 'selfenrl-queue.png', |
|
#help => 'Domain_Role_Approvals', |
|
url => '/adm/createuser?action=processauthorreq', |
|
permission => $permission->{'cusr'}, |
|
linktitle => 'Approve or reject author role requests', |
|
}, |
|
{ |
|
linktext => 'LON-CAPA Account Requests', |
|
icon => 'list-add.png', |
|
#help => 'Domain_Username_Approvals', |
|
url => '/adm/createuser?action=processusernamereq', |
|
permission => $permission->{'cusr'}, |
|
linktitle => 'Approve or reject LON-CAPA account requests', |
|
}, |
|
{ |
|
linktext => 'Change Log', |
|
icon => 'document-properties.png', |
|
#help => 'Course_User_Logs', |
|
url => '/adm/createuser?action=changelogs', |
|
permission => $permission->{'cusr'}, |
|
linktitle => 'View change log.', |
}, |
}, |
{ text => $links{$context}{'listusers'}, |
|
help => 'Course_View_Class_List', |
|
action => 'listusers', |
|
permission => ($permission->{'view'} || $permission->{'cusr'}), |
|
}, |
|
); |
); |
if ($context eq 'domain' || $context eq 'course') { |
|
my $customlink = { text => 'Edit Custom Roles', |
}elsif ($context eq 'course'){ |
help => 'Course_Editing_Custom_Roles', |
|
action => 'custom', |
|
permission => $permission->{'custom'}, |
|
}; |
|
push(@menu,$customlink); |
|
} |
|
if ($context eq 'course') { |
|
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity(); |
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity(); |
my @courselinks = |
|
( |
my %linktext = ( |
{ text => 'Enroll a Single Student', |
'Course' => { |
help => 'Course_Add_Student', |
single => 'Add/Modify a Student', |
action => 'singlestudent', |
drop => 'Drop Students', |
permission => $permission->{'cusr'}, |
groups => 'Course Groups', |
}, |
}, |
{ text => 'Drop Students', |
'Community' => { |
help => 'Course_Drop_Student', |
single => 'Add/Modify a Member', |
action => 'drop', |
drop => 'Drop Members', |
permission => $permission->{'cusr'}, |
groups => 'Community Groups', |
}); |
}, |
if (!exists($permission->{'cusr_section'})) { |
); |
|
$linktext{'Placement'} = $linktext{'Course'}; |
|
|
|
my %linktitle = ( |
|
'Course' => { |
|
single => 'Add a user with the role of student to this course', |
|
drop => 'Remove a student from this course.', |
|
groups => 'Manage course groups', |
|
}, |
|
'Community' => { |
|
single => 'Add a user with the role of member to this community', |
|
drop => 'Remove a member from this community.', |
|
groups => 'Manage community groups', |
|
}, |
|
); |
|
|
|
$linktitle{'Placement'} = $linktitle{'Course'}; |
|
|
|
push(@{ $menu[0]->{items} }, #Category: Single Users |
|
{ |
|
linktext => $linktext{$crstype}{'single'}, |
|
#help => 'Course_Add_Student', |
|
icon => 'list-add.png', |
|
url => '/adm/createuser?action=singlestudent', |
|
permission => $permission->{'cusr'}, |
|
linktitle => $linktitle{$crstype}{'single'}, |
|
}, |
|
); |
|
|
|
push(@{ $menu[1]->{items} }, #Category: Multiple Users |
|
{ |
|
linktext => $linktext{$crstype}{'drop'}, |
|
icon => 'edit-undo.png', |
|
#help => 'Course_Drop_Student', |
|
url => '/adm/createuser?action=drop', |
|
permission => $permission->{'cusr'}, |
|
linktitle => $linktitle{$crstype}{'drop'}, |
|
}, |
|
); |
|
push(@{ $menu[2]->{items} }, #Category: Administration |
|
{ |
|
linktext => 'Custom Roles', |
|
icon => 'emblem-photos.png', |
|
#help => 'Course_Editing_Custom_Roles', |
|
url => '/adm/createuser?action=custom', |
|
permission => $permission->{'custom'}, |
|
linktitle => 'Configure a custom role.', |
|
}, |
|
{ |
|
linktext => $linktext{$crstype}{'groups'}, |
|
icon => 'grps.png', |
|
#help => 'Course_Manage_Group', |
|
url => '/adm/coursegroups?refpage=cusr', |
|
permission => $permission->{'grp_manage'}, |
|
linktitle => $linktitle{$crstype}{'groups'}, |
|
}, |
|
{ |
|
linktext => 'Change Log', |
|
icon => 'document-properties.png', |
|
#help => 'Course_User_Logs', |
|
url => '/adm/createuser?action=changelogs', |
|
permission => $permission->{'cusr'}, |
|
linktitle => 'View change log.', |
|
}, |
|
); |
|
if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}) { |
|
push(@{ $menu[2]->{items} }, |
|
{ |
|
linktext => 'Enrollment Requests', |
|
icon => 'selfenrl-queue.png', |
|
#help => 'Course_Approve_Selfenroll', |
|
url => '/adm/createuser?action=selfenrollqueue', |
|
permission => $permission->{'selfenrolladmin'}, |
|
linktitle =>'Approve or reject enrollment requests.', |
|
}, |
|
); |
|
} |
|
|
|
if (!exists($permission->{'cusr_section'})){ |
if ($crstype ne 'Community') { |
if ($crstype ne 'Community') { |
push(@courselinks, |
push(@{ $menu[2]->{items} }, |
{ text => 'Automated Enrollment Manager', |
{ |
help => 'Course_Automated_Enrollment', |
linktext => 'Automated Enrollment', |
|
icon => 'roles.png', |
|
#help => 'Course_Automated_Enrollment', |
permission => (&Apache::lonnet::auto_run($cnum,$cdom) |
permission => (&Apache::lonnet::auto_run($cnum,$cdom) |
&& $permission->{'cusr'}), |
&& $permission->{'cusr'}), |
url => '/adm/populate', |
url => '/adm/populate', |
}); |
linktitle => 'Automated enrollment manager.', |
} |
} |
push(@courselinks, |
); |
{ text => 'Configure User Self-enrollment', |
} |
help => 'Course_Self_Enrollment', |
push(@{ $menu[2]->{items} }, |
action => 'selfenroll', |
{ |
permission => $permission->{'cusr'}, |
linktext => 'User Self-Enrollment', |
}); |
icon => 'self_enroll.png', |
|
#help => 'Course_Self_Enrollment', |
|
url => '/adm/createuser?action=selfenroll', |
|
permission => $permission->{'selfenrolladmin'}, |
|
linktitle => 'Configure user self-enrollment.', |
|
}, |
|
); |
} |
} |
if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}) { |
} elsif ($context eq 'author') { |
push(@courselinks, |
push(@{ $menu[2]->{items} }, #Category: Administration |
{ text => 'Enrollment Requests', |
{ |
help => 'Course_Approve_Selfenroll', |
linktext => 'Change Log', |
action => 'selfenrollqueue', |
icon => 'document-properties.png', |
permission => $permission->{'cusr'}, |
#help => 'Course_User_Logs', |
}); |
url => '/adm/createuser?action=changelogs', |
} |
permission => $permission->{'cusr'}, |
push(@courselinks, |
linktitle => 'View change log.', |
{ text => 'Manage Course Groups', |
}, |
help => 'Course_Manage_Group', |
); |
permission => $permission->{'grp_manage'}, |
} |
url => '/adm/coursegroups?refpage=cusr', |
return Apache::lonhtmlcommon::generate_menu(@menu); |
}, |
|
{ text => 'View Change Logs', |
|
help => 'Course_User_Logs', |
|
action => 'changelogs', |
|
permission => $permission->{'cusr'}, |
|
},); |
|
# { text => 'View Log-in History', |
# { text => 'View Log-in History', |
# help => 'Course_User_Logins', |
# help => 'Course_User_Logins', |
# action => 'logins', |
# action => 'logins', |
# permission => $permission->{'cusr'}, |
# permission => $permission->{'cusr'}, |
# }); |
# }); |
push(@menu,@courselinks); |
|
} |
|
my $menu_html = ''; |
|
foreach my $menu_item (@menu) { |
|
next if (! $menu_item->{'permission'}); |
|
$menu_html.='<p>'; |
|
if (exists($menu_item->{'help'})) { |
|
$menu_html.= |
|
&Apache::loncommon::help_open_topic($menu_item->{'help'}); |
|
} |
|
$menu_html.='<font size="+1">'; |
|
if (exists($menu_item->{'url'})) { |
|
$menu_html.=qq{<a href="$menu_item->{'url'}">}; |
|
} else { |
|
$menu_html.= |
|
qq{<a href="/adm/createuser?action=$menu_item->{'action'}">}; } |
|
$menu_html.= &mt($menu_item->{'text'}).'</a></font>'; |
|
$menu_html.='</p>'; |
|
} |
|
return $menu_html; |
|
} |
} |
|
|
sub restore_prev_selections { |
sub restore_prev_selections { |
Line 4270 sub restore_prev_selections {
|
Line 5495 sub restore_prev_selections {
|
} |
} |
|
|
sub print_selfenroll_menu { |
sub print_selfenroll_menu { |
my ($r,$context,$permission) = @_; |
my ($r,$context,$cid,$cdom,$cnum,$currsettings,$additional) = @_; |
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
my $formname = 'enrollstudent'; |
my $formname = 'selfenroll'; |
my $nolink = 1; |
my $nolink = 1; |
my ($row,$lt) = &get_selfenroll_titles(); |
my ($row,$lt) = &Apache::lonuserutils::get_selfenroll_titles(); |
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
my $setsec_js = |
my $setsec_js = |
&Apache::lonuserutils::setsections_javascript($formname,$groupslist); |
&Apache::lonuserutils::setsections_javascript($formname,$groupslist); |
Line 4283 sub print_selfenroll_menu {
|
Line 5508 sub print_selfenroll_menu {
|
butn => 'but no user types have been checked.', |
butn => 'but no user types have been checked.', |
wilf => "Please uncheck 'activate' or check at least one type.", |
wilf => "Please uncheck 'activate' or check at least one type.", |
); |
); |
|
&js_escape(\%alerts); |
my $selfenroll_js = <<"ENDSCRIPT"; |
my $selfenroll_js = <<"ENDSCRIPT"; |
function update_types(caller,num) { |
function update_types(caller,num) { |
var delidx = getIndexByName('selfenroll_delete'); |
var delidx = getIndexByName('selfenroll_delete'); |
Line 4393 function validate_types(form) {
|
Line 5619 function validate_types(form) {
|
} |
} |
} else { |
} else { |
if (document.$formname.selfenroll_activate.checked) { |
if (document.$formname.selfenroll_activate.checked) { |
var num = document.enrollstudent.selfenroll_activate.value; |
var num = document.$formname.selfenroll_activate.value; |
countfail = check_types(num,countfail,needaction) |
countfail = check_types(num,countfail,needaction) |
} |
} |
} |
} |
Line 4440 function check_types(num,countfail,needa
|
Line 5666 function check_types(num,countfail,needa
|
return countfail; |
return countfail; |
} |
} |
|
|
|
function toggleNotify() { |
|
var selfenrollApproval = 0; |
|
if (document.$formname.selfenroll_approval.length) { |
|
for (var i=0; i<document.$formname.selfenroll_approval.length; i++) { |
|
if (document.$formname.selfenroll_approval[i].checked) { |
|
selfenrollApproval = document.$formname.selfenroll_approval[i].value; |
|
break; |
|
} |
|
} |
|
} |
|
if (document.getElementById('notified')) { |
|
if (selfenrollApproval == 0) { |
|
document.getElementById('notified').style.display='none'; |
|
} else { |
|
document.getElementById('notified').style.display='block'; |
|
} |
|
} |
|
return; |
|
} |
|
|
function getIndexByName(item) { |
function getIndexByName(item) { |
for (var i=0;i<document.$formname.elements.length;i++) { |
for (var i=0;i<document.$formname.elements.length;i++) { |
if (document.$formname.elements[i].name == item) { |
if (document.$formname.elements[i].name == item) { |
Line 4449 function getIndexByName(item) {
|
Line 5695 function getIndexByName(item) {
|
return -1; |
return -1; |
} |
} |
ENDSCRIPT |
ENDSCRIPT |
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
|
|
my $output = '<script type="text/javascript">'."\n". |
my $output = '<script type="text/javascript">'."\n". |
'// <![CDATA['."\n". |
'// <![CDATA['."\n". |
Line 4458 ENDSCRIPT
|
Line 5702 ENDSCRIPT
|
'// ]]>'."\n". |
'// ]]>'."\n". |
'</script>'."\n". |
'</script>'."\n". |
'<h3>'.$lt->{'selfenroll'}.'</h3>'."\n"; |
'<h3>'.$lt->{'selfenroll'}.'</h3>'."\n"; |
my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum); |
|
if (ref($visactions) eq 'HASH') { |
my $visactions = &cat_visibility(); |
if ($visible) { |
my ($cathash,%cattype); |
$output .= '<p class="LC_info">'.$visactions->{'vis'}.'</p>'; |
my %domconfig = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom); |
} else { |
if (ref($domconfig{'coursecategories'}) eq 'HASH') { |
$output .= '<p class="LC_warning">'.$visactions->{'miss'}.'</p>' |
$cathash = $domconfig{'coursecategories'}{'cats'}; |
.$visactions->{'yous'}. |
$cattype{'auth'} = $domconfig{'coursecategories'}{'auth'}; |
'<p>'.$visactions->{'gen'}.'<br />'.$visactions->{'coca'}; |
$cattype{'unauth'} = $domconfig{'coursecategories'}{'unauth'}; |
if (ref($vismsgs) eq 'ARRAY') { |
if ($cattype{'auth'} eq '') { |
$output .= '<br />'.$visactions->{'make'}.'<ul>'; |
$cattype{'auth'} = 'std'; |
foreach my $item (@{$vismsgs}) { |
} |
$output .= '<li>'.$visactions->{$item}.'</li>'; |
if ($cattype{'unauth'} eq '') { |
|
$cattype{'unauth'} = 'std'; |
|
} |
|
} else { |
|
$cathash = {}; |
|
$cattype{'auth'} = 'std'; |
|
$cattype{'unauth'} = 'std'; |
|
} |
|
if (($cattype{'auth'} eq 'none') && ($cattype{'unauth'} eq 'none')) { |
|
$r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}. |
|
'<br />'. |
|
'<br />'.$visactions->{'take'}.'<ul>'. |
|
'<li>'.$visactions->{'dc_chgconf'}.'</li>'. |
|
'</ul>'); |
|
} elsif (($cattype{'auth'} !~ /^(std|domonly)$/) && ($cattype{'unauth'} !~ /^(std|domonly)$/)) { |
|
if ($currsettings->{'uniquecode'}) { |
|
$r->print('<span class="LC_info">'.$visactions->{'vis'}.'</span>'); |
|
} else { |
|
$r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}. |
|
'<br />'. |
|
'<br />'.$visactions->{'take'}.'<ul>'. |
|
'<li>'.$visactions->{'dc_setcode'}.'</li>'. |
|
'</ul><br />'); |
|
} |
|
} else { |
|
my ($visible,$cansetvis,$vismsgs) = &visible_in_stdcat($cdom,$cnum,\%domconfig); |
|
if (ref($visactions) eq 'HASH') { |
|
if ($visible) { |
|
$output .= '<p class="LC_info">'.$visactions->{'vis'}.'</p>'; |
|
} else { |
|
$output .= '<p class="LC_warning">'.$visactions->{'miss'}.'</p>' |
|
.$visactions->{'yous'}. |
|
'<p>'.$visactions->{'gen'}.'<br />'.$visactions->{'coca'}; |
|
if (ref($vismsgs) eq 'ARRAY') { |
|
$output .= '<br />'.$visactions->{'make'}.'<ul>'; |
|
foreach my $item (@{$vismsgs}) { |
|
$output .= '<li>'.$visactions->{$item}.'</li>'; |
|
} |
|
$output .= '</ul>'; |
} |
} |
$output .= '</ul>'; |
$output .= '</p>'; |
} |
} |
$output .= '</p>'; |
|
} |
} |
} |
} |
$output .= '<form name="'.$formname.'" method="post" action="/adm/createuser">'."\n". |
my $actionhref = '/adm/createuser'; |
|
if ($context eq 'domain') { |
|
$actionhref = '/adm/modifycourse'; |
|
} |
|
|
|
my %noedit; |
|
unless ($context eq 'domain') { |
|
%noedit = &get_noedit_fields($cdom,$cnum,$crstype,$row); |
|
} |
|
$output .= '<form name="'.$formname.'" method="post" action="'.$actionhref.'">'."\n". |
&Apache::lonhtmlcommon::start_pick_box(); |
&Apache::lonhtmlcommon::start_pick_box(); |
if (ref($row) eq 'ARRAY') { |
if (ref($row) eq 'ARRAY') { |
foreach my $item (@{$row}) { |
foreach my $item (@{$row}) { |
Line 4484 ENDSCRIPT
|
Line 5774 ENDSCRIPT
|
if (ref($lt) eq 'HASH') { |
if (ref($lt) eq 'HASH') { |
$title = $lt->{$item}; |
$title = $lt->{$item}; |
} |
} |
$output .= |
$output .= &Apache::lonhtmlcommon::row_title($title); |
&Apache::lonhtmlcommon::row_title($title, |
|
'LC_selfenroll_pick_box_title','LC_oddrow_value')."\n"; |
|
if ($item eq 'types') { |
if ($item eq 'types') { |
my $curr_types = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_types'}; |
my $curr_types; |
|
if (ref($currsettings) eq 'HASH') { |
|
$curr_types = $currsettings->{'selfenroll_types'}; |
|
} |
|
if ($noedit{$item}) { |
|
if ($curr_types eq '*') { |
|
$output .= &mt('Any user in any domain'); |
|
} else { |
|
my @entries = split(/;/,$curr_types); |
|
if (@entries > 0) { |
|
$output .= '<ul>'; |
|
foreach my $entry (@entries) { |
|
my ($currdom,$typestr) = split(/:/,$entry); |
|
next if ($typestr eq ''); |
|
my $domdesc = &Apache::lonnet::domain($currdom); |
|
my @currinsttypes = split(',',$typestr); |
|
my ($othertitle,$usertypes,$types) = |
|
&Apache::loncommon::sorted_inst_types($currdom); |
|
if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) { |
|
$usertypes->{'any'} = &mt('any user'); |
|
if (keys(%{$usertypes}) > 0) { |
|
$usertypes->{'other'} = &mt('other users'); |
|
} |
|
my @longinsttypes = map { $usertypes->{$_}; } @currinsttypes; |
|
$output .= '<li>'.$domdesc.':'.join(', ',@longinsttypes).'</li>'; |
|
} |
|
} |
|
$output .= '</ul>'; |
|
} else { |
|
$output .= &mt('None'); |
|
} |
|
} |
|
$output .= '<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
|
} |
my $showdomdesc = 1; |
my $showdomdesc = 1; |
my $includeempty = 1; |
my $includeempty = 1; |
my $num = 0; |
my $num = 0; |
Line 4553 ENDSCRIPT
|
Line 5875 ENDSCRIPT
|
.&Apache::loncommon::end_data_table(); |
.&Apache::loncommon::end_data_table(); |
} elsif ($item eq 'registered') { |
} elsif ($item eq 'registered') { |
my ($regon,$regoff); |
my ($regon,$regoff); |
if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_registered'}) { |
my $registered; |
|
if (ref($currsettings) eq 'HASH') { |
|
$registered = $currsettings->{'selfenroll_registered'}; |
|
} |
|
if ($noedit{$item}) { |
|
if ($registered) { |
|
$output .= &mt('Must be registered in course'); |
|
} else { |
|
$output .= &mt('No requirement'); |
|
} |
|
$output .= '<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
|
} |
|
if ($registered) { |
$regon = ' checked="checked" '; |
$regon = ' checked="checked" '; |
$regoff = ' '; |
$regoff = ' '; |
} else { |
} else { |
Line 4566 ENDSCRIPT
|
Line 5901 ENDSCRIPT
|
'<input type="radio" name="selfenroll_registered" value="0"'.$regoff.'/>'. |
'<input type="radio" name="selfenroll_registered" value="0"'.$regoff.'/>'. |
&mt('No').'</label>'; |
&mt('No').'</label>'; |
} elsif ($item eq 'enroll_dates') { |
} elsif ($item eq 'enroll_dates') { |
my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_date'}; |
my ($starttime,$endtime); |
my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_date'}; |
if (ref($currsettings) eq 'HASH') { |
if ($starttime eq '') { |
$starttime = $currsettings->{'selfenroll_start_date'}; |
$starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'}; |
$endtime = $currsettings->{'selfenroll_end_date'}; |
} |
if ($starttime eq '') { |
if ($endtime eq '') { |
$starttime = $currsettings->{'default_enrollment_start_date'}; |
$endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'}; |
} |
|
if ($endtime eq '') { |
|
$endtime = $currsettings->{'default_enrollment_end_date'}; |
|
} |
|
} |
|
if ($noedit{$item}) { |
|
$output .= &mt('From: [_1], to: [_2]',&Apache::lonlocal::locallocaltime($starttime), |
|
&Apache::lonlocal::locallocaltime($endtime)); |
|
$output .= '<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
} |
} |
my $startform = |
my $startform = |
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_date',$starttime, |
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_date',$starttime, |
Line 4582 ENDSCRIPT
|
Line 5926 ENDSCRIPT
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
undef,undef,undef,undef,undef,undef,undef,$nolink); |
$output .= &selfenroll_date_forms($startform,$endform); |
$output .= &selfenroll_date_forms($startform,$endform); |
} elsif ($item eq 'access_dates') { |
} elsif ($item eq 'access_dates') { |
my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_access'}; |
my ($starttime,$endtime); |
my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_access'}; |
if (ref($currsettings) eq 'HASH') { |
if ($starttime eq '') { |
$starttime = $currsettings->{'selfenroll_start_access'}; |
$starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'}; |
$endtime = $currsettings->{'selfenroll_end_access'}; |
} |
if ($starttime eq '') { |
if ($endtime eq '') { |
$starttime = $currsettings->{'default_enrollment_start_date'}; |
$endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'}; |
} |
|
if ($endtime eq '') { |
|
$endtime = $currsettings->{'default_enrollment_end_date'}; |
|
} |
|
} |
|
if ($noedit{$item}) { |
|
$output .= &mt('From: [_1], to: [_2]',&Apache::lonlocal::locallocaltime($starttime), |
|
&Apache::lonlocal::locallocaltime($endtime)); |
|
$output .= '<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
} |
} |
my $startform = |
my $startform = |
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_access',$starttime, |
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_access',$starttime, |
Line 4598 ENDSCRIPT
|
Line 5951 ENDSCRIPT
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
undef,undef,undef,undef,undef,undef,undef,$nolink); |
$output .= &selfenroll_date_forms($startform,$endform); |
$output .= &selfenroll_date_forms($startform,$endform); |
} elsif ($item eq 'section') { |
} elsif ($item eq 'section') { |
my $currsec = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_section'}; |
my $currsec; |
|
if (ref($currsettings) eq 'HASH') { |
|
$currsec = $currsettings->{'selfenroll_section'}; |
|
} |
my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum); |
my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum); |
my $newsecval; |
my $newsecval; |
if ($currsec ne 'none' && $currsec ne '') { |
if ($currsec ne 'none' && $currsec ne '') { |
Line 4606 ENDSCRIPT
|
Line 5962 ENDSCRIPT
|
$newsecval = $currsec; |
$newsecval = $currsec; |
} |
} |
} |
} |
|
if ($noedit{$item}) { |
|
if ($currsec ne '') { |
|
$output .= $currsec; |
|
} else { |
|
$output .= &mt('No specific section'); |
|
} |
|
$output .= '<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
|
} |
my $sections_select = |
my $sections_select = |
&Apache::lonuserutils::course_sections(\%sections_count,'st',$currsec); |
&Apache::lonuserutils::course_sections(\%sections_count,'st',$currsec); |
$output .= '<table class="LC_createuser">'."\n". |
$output .= '<table class="LC_createuser">'."\n". |
Line 4615 ENDSCRIPT
|
Line 5980 ENDSCRIPT
|
&mt('New section').'<br />'."\n". |
&mt('New section').'<br />'."\n". |
'<input type="text" name="newsec" size="15" value="'.$newsecval.'" />'."\n". |
'<input type="text" name="newsec" size="15" value="'.$newsecval.'" />'."\n". |
'<input type="hidden" name="sections" value="" />'."\n". |
'<input type="hidden" name="sections" value="" />'."\n". |
'<input type="hidden" name="state" value="done" />'."\n". |
|
'</td></tr></table>'."\n"; |
'</td></tr></table>'."\n"; |
} elsif ($item eq 'approval') { |
} elsif ($item eq 'approval') { |
my ($appon,$appoff); |
my ($currnotified,$currapproval,%appchecked); |
my $cid = $env{'request.course.id'}; |
my %selfdescs = &Apache::lonuserutils::selfenroll_default_descs(); |
my $currnotified = $env{'course.'.$cid.'.internal.selfenroll_notifylist'}; |
if (ref($currsettings) eq 'HASH') { |
if ($env{'course.'.$cid.'.internal.selfenroll_approval'}) { |
$currnotified = $currsettings->{'selfenroll_notifylist'}; |
$appon = ' checked="checked" '; |
$currapproval = $currsettings->{'selfenroll_approval'}; |
$appoff = ' '; |
} |
} else { |
if ($currapproval !~ /^[012]$/) { |
$appon = ' '; |
$currapproval = 0; |
$appoff = ' checked="checked" '; |
} |
|
if ($noedit{$item}) { |
|
$output .= $selfdescs{'approval'}{$currapproval}. |
|
'<br />'.&mt('(Set by Domain Coordinator)'); |
|
next; |
|
} |
|
$appchecked{$currapproval} = ' checked="checked"'; |
|
for my $i (0..2) { |
|
$output .= '<label>'. |
|
'<input type="radio" name="selfenroll_approval" value="'.$i.'"'. |
|
$appchecked{$i}.' onclick="toggleNotify();" />'.$selfdescs{'approval'}{$i}. |
|
'</label>'.(' 'x2); |
} |
} |
$output .= '<label>'. |
|
'<input type="radio" name="selfenroll_approval" value="1"'.$appon.'/>'. |
|
&mt('Yes').'</label> <label>'. |
|
'<input type="radio" name="selfenroll_approval" value="0"'.$appoff.'/>'. |
|
&mt('No').'</label>'; |
|
my %advhash = &Apache::lonnet::get_course_adv_roles($cid,1); |
my %advhash = &Apache::lonnet::get_course_adv_roles($cid,1); |
my (@ccs,%notified); |
my (@ccs,%notified); |
my $ccrole = 'cc'; |
my $ccrole = 'cc'; |
Line 4651 ENDSCRIPT
|
Line 6021 ENDSCRIPT
|
} |
} |
} |
} |
if (@ccs) { |
if (@ccs) { |
$output .= '<br />'.&mt('Personnel to be notified when an enrollment request needs approval, or has been approved:').' '.&Apache::loncommon::start_data_table(). |
my $style; |
|
unless ($currapproval) { |
|
$style = ' style="display: none;"'; |
|
} |
|
$output .= '<br /><div id="notified"'.$style.'>'. |
|
&mt('Personnel to be notified when an enrollment request needs approval, or has been approved:').' '. |
|
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_row(); |
&Apache::loncommon::start_data_table_row(); |
my $count = 0; |
my $count = 0; |
my $numcols = 4; |
my $numcols = 4; |
Line 4669 ENDSCRIPT
|
Line 6045 ENDSCRIPT
|
'<input type="checkbox" name="selfenroll_notify"'.$notifyon.' value="'.$cc.'" />'. |
'<input type="checkbox" name="selfenroll_notify"'.$notifyon.' value="'.$cc.'" />'. |
&Apache::loncommon::plainname($ccuname,$ccudom). |
&Apache::loncommon::plainname($ccuname,$ccudom). |
'</label></span></td>'; |
'</label></span></td>'; |
$count; |
$count ++; |
} |
} |
my $rem = $count%$numcols; |
my $rem = $count%$numcols; |
if ($rem) { |
if ($rem) { |
Line 4679 ENDSCRIPT
|
Line 6055 ENDSCRIPT
|
} |
} |
} |
} |
$output .= &Apache::loncommon::end_data_table_row(). |
$output .= &Apache::loncommon::end_data_table_row(). |
&Apache::loncommon::end_data_table(); |
&Apache::loncommon::end_data_table(). |
|
'</div>'; |
} |
} |
} elsif ($item eq 'limit') { |
} elsif ($item eq 'limit') { |
my ($crslimit,$selflimit,$nolimit); |
my ($crslimit,$selflimit,$nolimit,$currlim,$currcap); |
my $cid = $env{'request.course.id'}; |
if (ref($currsettings) eq 'HASH') { |
my $currlim = $env{'course.'.$cid.'.internal.selfenroll_limit'}; |
$currlim = $currsettings->{'selfenroll_limit'}; |
my $currcap = $env{'course.'.$cid.'.internal.selfenroll_cap'}; |
$currcap = $currsettings->{'selfenroll_cap'}; |
my $nolimit = ' checked="checked" '; |
} |
|
if ($noedit{$item}) { |
|
if (($currlim eq 'allstudents') || ($currlim eq 'selfenrolled')) { |
|
if ($currlim eq 'allstudents') { |
|
$output .= &mt('Limit by total students'); |
|
} elsif ($currlim eq 'selfenrolled') { |
|
$output .= &mt('Limit by total self-enrolled students'); |
|
} |
|
$output .= ' '.&mt('Maximum: [_1]',$currcap). |
|
'<br />'.&mt('(Set by Domain Coordinator)'); |
|
} else { |
|
$output .= &mt('No limit').'<br />'.&mt('(Set by Domain Coordinator)'); |
|
} |
|
next; |
|
} |
if ($currlim eq 'allstudents') { |
if ($currlim eq 'allstudents') { |
$crslimit = ' checked="checked" '; |
$crslimit = ' checked="checked" '; |
$selflimit = ' '; |
$selflimit = ' '; |
Line 4698 ENDSCRIPT
|
Line 6089 ENDSCRIPT
|
} else { |
} else { |
$crslimit = ' '; |
$crslimit = ' '; |
$selflimit = ' '; |
$selflimit = ' '; |
|
$nolimit = ' checked="checked" '; |
} |
} |
$output .= '<table><tr><td><label>'. |
$output .= '<table><tr><td><label>'. |
'<input type="radio" name="selfenroll_limit" value="none"'.$nolimit.'/>'. |
'<input type="radio" name="selfenroll_limit" value="none"'.$nolimit.'/>'. |
Line 4717 ENDSCRIPT
|
Line 6109 ENDSCRIPT
|
$output .= &Apache::lonhtmlcommon::end_pick_box(). |
$output .= &Apache::lonhtmlcommon::end_pick_box(). |
'<br /><input type="button" name="selfenrollconf" value="' |
'<br /><input type="button" name="selfenrollconf" value="' |
.&mt('Save').'" onclick="validate_types(this.form);" />' |
.&mt('Save').'" onclick="validate_types(this.form);" />' |
.'<input type="hidden" name="action" value="selfenroll" /></form>'; |
.'<input type="hidden" name="action" value="selfenroll" />' |
|
.'<input type="hidden" name="state" value="done" />'."\n". |
|
$additional.'</form>'; |
$r->print($output); |
$r->print($output); |
return; |
return; |
} |
} |
|
|
sub visible_in_cat { |
sub get_noedit_fields { |
my ($cdom,$cnum) = @_; |
my ($cdom,$cnum,$crstype,$row) = @_; |
my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom); |
my %noedit; |
my ($cathash,%settable,@vismsgs,$cansetvis); |
if (ref($row) eq 'ARRAY') { |
my %visactions = &Apache::lonlocal::texthash( |
my %settings = &Apache::lonnet::get('environment',['internal.coursecode','internal.textbook', |
vis => 'Your course/community currently appears in the Course/Community Catalog for this domain.', |
'internal.selfenrollmgrdc', |
gen => 'Courses can be both self-cataloging, based on an institutional code (e.g., fs08phy231), or can be assigned categories from a hierarchy defined for the domain.', |
'internal.selfenrollmgrcc'],$cdom,$cnum); |
miss => 'Your course/community does not currently appear in the Course/Community Catalog for this domain.', |
my $type = &Apache::lonuserutils::get_extended_type($cdom,$cnum,$crstype,\%settings); |
yous => 'You should remedy this if you plan to allow self-enrollment, otherwise students will have difficulty finding your course.', |
my (%specific_managebydc,%specific_managebycc,%default_managebydc); |
coca => 'Courses can be absent from the Catalog, because they do not have an institutional code, have no assigned category, or have been specifically excluded.', |
map { $specific_managebydc{$_} = 1; } (split(/,/,$settings{'internal.selfenrollmgrdc'})); |
make => 'Make any changes to self-enrollment settings below, click "Save", then take action to include the course in the Catalog:', |
map { $specific_managebycc{$_} = 1; } (split(/,/,$settings{'internal.selfenrollmgrcc'})); |
take => 'Take the following action to ensure the course appears in the Catalog:', |
my %domdefaults = &Apache::lonnet::get_domain_defaults($cdom); |
dc_unhide => 'Ask a domain coordinator to change the "Exclude from course catalog" setting.', |
map { $default_managebydc{$_} = 1; } (split(/,/,$domdefaults{$type.'selfenrolladmdc'})); |
dc_addinst => 'Ask a domain coordinator to enable display the catalog of "Official courses (with institutional codes)".', |
|
dc_instcode => 'Ask a domain coordinator to assign an institutional code (if this is an official course).', |
foreach my $item (@{$row}) { |
dc_catalog => 'Ask a domain coordinator to enable or create at least one course category in the domain.', |
next if ($specific_managebycc{$item}); |
dc_categories => 'Ask a domain coordinator to create a hierarchy of categories and sub categories for courses in the domain.', |
if (($specific_managebydc{$item}) || ($default_managebydc{$item})) { |
dc_chgcat => 'Ask a domain coordinator to change the category assigned to the course, as the one currently assigned is no longer used in the domain', |
$noedit{$item} = 1; |
dc_addcat => 'Ask a domain coordinator to assign a category to the course.', |
} |
); |
} |
$visactions{'unhide'} = &mt('Use [_1]Set course environment[_2] to change the "Exclude from course catalog" setting.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
} |
$visactions{'chgcat'} = &mt('Use [_1]Set course environment[_2] to change the category assigned to the course, as the one currently assigned is no longer used in the domain.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
return %noedit; |
$visactions{'addcat'} = &mt('Use [_1]Set course environment[_2] to assign a category to the course.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
} |
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
|
if ($domconf{'coursecategories'}{'togglecats'} eq 'crs') { |
sub visible_in_stdcat { |
|
my ($cdom,$cnum,$domconf) = @_; |
|
my ($cathash,%settable,@vismsgs,$cansetvis,$visible); |
|
unless (ref($domconf) eq 'HASH') { |
|
return ($visible,$cansetvis,\@vismsgs); |
|
} |
|
if (ref($domconf->{'coursecategories'}) eq 'HASH') { |
|
if ($domconf->{'coursecategories'}{'togglecats'} eq 'crs') { |
$settable{'togglecats'} = 1; |
$settable{'togglecats'} = 1; |
} |
} |
if ($domconf{'coursecategories'}{'categorize'} eq 'crs') { |
if ($domconf->{'coursecategories'}{'categorize'} eq 'crs') { |
$settable{'categorize'} = 1; |
$settable{'categorize'} = 1; |
} |
} |
$cathash = $domconf{'coursecategories'}{'cats'}; |
$cathash = $domconf->{'coursecategories'}{'cats'}; |
} |
} |
if ($settable{'togglecats'} && $settable{'categorize'}) { |
if ($settable{'togglecats'} && $settable{'categorize'}) { |
$cansetvis = &mt('You are able to both assign a course category and choose to exclude this course from the catalog.'); |
$cansetvis = &mt('You are able to both assign a course category and choose to exclude this course from the catalog.'); |
Line 4767 sub visible_in_cat {
|
Line 6168 sub visible_in_cat {
|
my %currsettings = |
my %currsettings = |
&Apache::lonnet::get('environment',['hidefromcat','categories','internal.coursecode'], |
&Apache::lonnet::get('environment',['hidefromcat','categories','internal.coursecode'], |
$cdom,$cnum); |
$cdom,$cnum); |
my $visible = 0; |
$visible = 0; |
if ($currsettings{'internal.coursecode'} ne '') { |
if ($currsettings{'internal.coursecode'} ne '') { |
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
if (ref($domconf->{'coursecategories'}) eq 'HASH') { |
$cathash = $domconf{'coursecategories'}{'cats'}; |
$cathash = $domconf->{'coursecategories'}{'cats'}; |
if (ref($cathash) eq 'HASH') { |
if (ref($cathash) eq 'HASH') { |
if ($cathash->{'instcode::0'} eq '') { |
if ($cathash->{'instcode::0'} eq '') { |
push(@vismsgs,'dc_addinst'); |
push(@vismsgs,'dc_addinst'); |
Line 4794 sub visible_in_cat {
|
Line 6195 sub visible_in_cat {
|
} |
} |
if ($currsettings{'categories'} ne '') { |
if ($currsettings{'categories'} ne '') { |
my $cathash; |
my $cathash; |
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
if (ref($domconf->{'coursecategories'}) eq 'HASH') { |
$cathash = $domconf{'coursecategories'}{'cats'}; |
$cathash = $domconf->{'coursecategories'}{'cats'}; |
if (ref($cathash) eq 'HASH') { |
if (ref($cathash) eq 'HASH') { |
if (keys(%{$cathash}) == 0) { |
if (keys(%{$cathash}) == 0) { |
push(@vismsgs,'dc_catalog'); |
push(@vismsgs,'dc_catalog'); |
Line 4841 sub visible_in_cat {
|
Line 6242 sub visible_in_cat {
|
unshift(@vismsgs,'dc_unhide') |
unshift(@vismsgs,'dc_unhide') |
} |
} |
} |
} |
return ($visible,$cansetvis,\@vismsgs,\%visactions); |
return ($visible,$cansetvis,\@vismsgs); |
|
} |
|
|
|
sub cat_visibility { |
|
my %visactions = &Apache::lonlocal::texthash( |
|
vis => 'This course/community currently appears in the Course/Community Catalog for this domain.', |
|
gen => 'Courses can be both self-cataloging, based on an institutional code (e.g., fs08phy231), or can be assigned categories from a hierarchy defined for the domain.', |
|
miss => 'This course/community does not currently appear in the Course/Community Catalog for this domain.', |
|
none => 'Display of a course catalog is disabled for this domain.', |
|
yous => 'You should remedy this if you plan to allow self-enrollment, otherwise students will have difficulty finding this course.', |
|
coca => 'Courses can be absent from the Catalog, because they do not have an institutional code, have no assigned category, or have been specifically excluded.', |
|
make => 'Make any changes to self-enrollment settings below, click "Save", then take action to include the course in the Catalog:', |
|
take => 'Take the following action to ensure the course appears in the Catalog:', |
|
dc_chgconf => 'Ask a domain coordinator to change the Catalog type for this domain.', |
|
dc_setcode => 'Ask a domain coordinator to assign a six character code to the course', |
|
dc_unhide => 'Ask a domain coordinator to change the "Exclude from course catalog" setting.', |
|
dc_addinst => 'Ask a domain coordinator to enable display the catalog of "Official courses (with institutional codes)".', |
|
dc_instcode => 'Ask a domain coordinator to assign an institutional code (if this is an official course).', |
|
dc_catalog => 'Ask a domain coordinator to enable or create at least one course category in the domain.', |
|
dc_categories => 'Ask a domain coordinator to create a hierarchy of categories and sub categories for courses in the domain.', |
|
dc_chgcat => 'Ask a domain coordinator to change the category assigned to the course, as the one currently assigned is no longer used in the domain', |
|
dc_addcat => 'Ask a domain coordinator to assign a category to the course.', |
|
); |
|
$visactions{'unhide'} = &mt('Use [_1]Categorize course[_2] to change the "Exclude from course catalog" setting.','<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"'); |
|
$visactions{'chgcat'} = &mt('Use [_1]Categorize course[_2] to change the category assigned to the course, as the one currently assigned is no longer used in the domain.','"<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"'); |
|
$visactions{'addcat'} = &mt('Use [_1]Categorize course[_2] to assign a category to the course.','"<a href="/adm/courseprefs?phase=display&actions=courseinfo">','</a>"'); |
|
return \%visactions; |
} |
} |
|
|
sub new_selfenroll_dom_row { |
sub new_selfenroll_dom_row { |
Line 4941 sub selfenroll_date_forms {
|
Line 6368 sub selfenroll_date_forms {
|
} |
} |
|
|
sub print_userchangelogs_display { |
sub print_userchangelogs_display { |
my ($r,$context,$permission) = @_; |
my ($r,$context,$permission,$brcrum) = @_; |
my $formname = 'roleslog'; |
my $formname = 'rolelog'; |
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
my ($username,$domain,$crstype,%roleslog); |
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
if ($context eq 'domain') { |
my $crstype = &Apache::loncommon::course_type(); |
$domain = $env{'request.role.domain'}; |
my %roleslog=&Apache::lonnet::dump('nohist_rolelog',$cdom,$cnum); |
%roleslog=&Apache::lonnet::dump_dom('nohist_rolelog',$domain); |
|
} else { |
|
if ($context eq 'course') { |
|
$domain = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
$username = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
$crstype = &Apache::loncommon::course_type(); |
|
my %saveable_parameters = ('show' => 'scalar',); |
|
&Apache::loncommon::store_course_settings('roles_log', |
|
\%saveable_parameters); |
|
&Apache::loncommon::restore_course_settings('roles_log', |
|
\%saveable_parameters); |
|
} elsif ($context eq 'author') { |
|
$domain = $env{'user.domain'}; |
|
if ($env{'request.role'} =~ m{^au\./\Q$domain\E/$}) { |
|
$username = $env{'user.name'}; |
|
} else { |
|
undef($domain); |
|
} |
|
} |
|
if ($domain ne '' && $username ne '') { |
|
%roleslog=&Apache::lonnet::dump('nohist_rolelog',$domain,$username); |
|
} |
|
} |
if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); } |
if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); } |
|
|
$r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'); |
my $helpitem; |
my %saveable_parameters = ('show' => 'scalar',); |
if ($context eq 'course') { |
&Apache::loncommon::store_course_settings('roles_log', |
$helpitem = 'Course_User_Logs'; |
\%saveable_parameters); |
} |
&Apache::loncommon::restore_course_settings('roles_log', |
push (@{$brcrum}, |
\%saveable_parameters); |
{href => '/adm/createuser?action=changelogs', |
|
text => 'User Management Logs', |
|
help => $helpitem}); |
|
my $bread_crumbs_component = 'User Changes'; |
|
my $args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
|
|
# Create navigation javascript |
|
my $jsnav = &userlogdisplay_js($formname); |
|
|
|
my $jscript = (<<ENDSCRIPT); |
|
<script type="text/javascript"> |
|
// <![CDATA[ |
|
$jsnav |
|
// ]]> |
|
</script> |
|
ENDSCRIPT |
|
|
|
# print page header |
|
$r->print(&header($jscript,$args)); |
|
|
# set defaults |
# set defaults |
my $now = time(); |
my $now = time(); |
my $defstart = $now - (7*24*3600); #7 days ago |
my $defstart = $now - (7*24*3600); #7 days ago |
Line 4984 sub print_userchangelogs_display {
|
Line 6453 sub print_userchangelogs_display {
|
} |
} |
my (%whodunit,%changed,$version); |
my (%whodunit,%changed,$version); |
($version) = ($r->dir_config('lonVersion') =~ /^([\d\.]+)\-/); |
($version) = ($r->dir_config('lonVersion') =~ /^([\d\.]+)\-/); |
$r->print(&role_display_filter($formname,$cdom,$cnum,\%curr,$version,$crstype)); |
|
my $showntablehdr = 0; |
|
my $tablehdr = &Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th> </th><th>'.&mt('When').'</th><th>'.&mt('Who made the change'). |
|
'</th><th>'.&mt('Changed User').'</th><th>'.&mt('Role').'</th><th>'.&mt('Section').'</th><th>'. |
|
&mt('Context').'</th><th>'.&mt('Start').'</th><th>'.&mt('End').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
my ($minshown,$maxshown); |
my ($minshown,$maxshown); |
$minshown = 1; |
$minshown = 1; |
my $count = 0; |
my $count = 0; |
if ($curr{'show'} ne &mt('all')) { |
if ($curr{'show'} =~ /\D/) { |
|
$curr{'page'} = 1; |
|
} else { |
$maxshown = $curr{'page'} * $curr{'show'}; |
$maxshown = $curr{'page'} * $curr{'show'}; |
if ($curr{'page'} > 1) { |
if ($curr{'page'} > 1) { |
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
} |
} |
} |
} |
|
|
|
# Form Header |
|
$r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'. |
|
&role_display_filter($context,$formname,$domain,$username,\%curr, |
|
$version,$crstype)); |
|
|
|
my $showntableheader = 0; |
|
|
|
# Table Header |
|
my $tableheader = |
|
&Apache::loncommon::start_data_table_header_row() |
|
.'<th> </th>' |
|
.'<th>'.&mt('When').'</th>' |
|
.'<th>'.&mt('Who made the change').'</th>' |
|
.'<th>'.&mt('Changed User').'</th>' |
|
.'<th>'.&mt('Role').'</th>'; |
|
|
|
if ($context eq 'course') { |
|
$tableheader .= '<th>'.&mt('Section').'</th>'; |
|
} |
|
$tableheader .= |
|
'<th>'.&mt('Context').'</th>' |
|
.'<th>'.&mt('Start').'</th>' |
|
.'<th>'.&mt('End').'</th>' |
|
.&Apache::loncommon::end_data_table_header_row(); |
|
|
|
# Display user change log data |
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) { |
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) { |
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) || |
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) || |
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'})); |
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'})); |
if ($curr{'show'} ne &mt('all')) { |
if ($curr{'show'} !~ /\D/) { |
if ($count >= $curr{'page'} * $curr{'show'}) { |
if ($count >= $curr{'page'} * $curr{'show'}) { |
$more_records = 1; |
$more_records = 1; |
last; |
last; |
Line 5022 sub print_userchangelogs_display {
|
Line 6512 sub print_userchangelogs_display {
|
} |
} |
$count ++; |
$count ++; |
next if ($count < $minshown); |
next if ($count < $minshown); |
if (!$showntablehdr) { |
unless ($showntableheader) { |
$r->print($tablehdr); |
$r->print(&Apache::loncommon::start_data_table() |
$showntablehdr = 1; |
.$tableheader); |
|
$r->rflush(); |
|
$showntableheader = 1; |
} |
} |
if ($whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} eq '') { |
if ($whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} eq '') { |
$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} = |
$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} = |
Line 5060 sub print_userchangelogs_display {
|
Line 6552 sub print_userchangelogs_display {
|
if ($roleslog{$id}{'logentry'}{'selfenroll'}) { |
if ($roleslog{$id}{'logentry'}{'selfenroll'}) { |
$chgcontext = 'selfenroll'; |
$chgcontext = 'selfenroll'; |
} |
} |
my %lt = &rolechg_contexts($crstype); |
my %lt = &rolechg_contexts($context,$crstype); |
if ($chgcontext ne '' && $lt{$chgcontext} ne '') { |
if ($chgcontext ne '' && $lt{$chgcontext} ne '') { |
$chgcontext = $lt{$chgcontext}; |
$chgcontext = $lt{$chgcontext}; |
} |
} |
$r->print(&Apache::loncommon::start_data_table_row().'<td>'.$count.'</td><td>'.&Apache::lonlocal::locallocaltime($roleslog{$id}{'exe_time'}).'</td><td>'.$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}}.'</td><td>'.$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}}.'</td><td>'.&Apache::lonnet::plaintext($roleslog{$id}{'logentry'}{'role'},$crstype).'</td><td>'.$sec.'</td><td>'.$chgcontext.'</td><td>'.$rolestart.'</td><td>'.$roleend.'</td>'.&Apache::loncommon::end_data_table_row()."\n"); |
$r->print( |
|
&Apache::loncommon::start_data_table_row() |
|
.'<td>'.$count.'</td>' |
|
.'<td>'.&Apache::lonlocal::locallocaltime($roleslog{$id}{'exe_time'}).'</td>' |
|
.'<td>'.$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}}.'</td>' |
|
.'<td>'.$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}}.'</td>' |
|
.'<td>'.&Apache::lonnet::plaintext($roleslog{$id}{'logentry'}{'role'},$crstype).'</td>'); |
|
if ($context eq 'course') { |
|
$r->print('<td>'.$sec.'</td>'); |
|
} |
|
$r->print( |
|
'<td>'.$chgcontext.'</td>' |
|
.'<td>'.$rolestart.'</td>' |
|
.'<td>'.$roleend.'</td>' |
|
.&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
|
|
if ($showntableheader) { # Table footer, if content displayed above |
|
$r->print(&Apache::loncommon::end_data_table(). |
|
&userlogdisplay_navlinks(\%curr,$more_records)); |
|
} else { # No content displayed above |
|
$r->print('<p class="LC_info">' |
|
.&mt('There are no records to display.') |
|
.'</p>' |
|
); |
} |
} |
if ($showntablehdr) { |
|
$r->print(&Apache::loncommon::end_data_table().'<br />'); |
# Form Footer |
if (($curr{'page'} > 1) || ($more_records)) { |
$r->print( |
$r->print('<table><tr>'); |
'<input type="hidden" name="page" value="'.$curr{'page'}.'" />' |
if ($curr{'page'} > 1) { |
.'<input type="hidden" name="action" value="changelogs" />' |
$r->print('<td><a href="javascript:chgPage('."'previous'".');">'.&mt('Previous [_1] changes',$curr{'show'}).'</a></td>'); |
.'</form>'); |
} |
return; |
if ($more_records) { |
} |
$r->print('<td><a href="javascript:chgPage('."'next'".');">'.&mt('Next [_1] changes',$curr{'show'}).'</a></td>'); |
|
} |
sub userlogdisplay_js { |
$r->print('</tr></table>'); |
my ($formname) = @_; |
$r->print(<<"ENDSCRIPT"); |
return <<"ENDSCRIPT"; |
<script type="text/javascript"> |
|
// <![CDATA[ |
|
function chgPage(caller) { |
function chgPage(caller) { |
if (caller == 'previous') { |
if (caller == 'previous') { |
document.$formname.page.value --; |
document.$formname.page.value --; |
Line 5087 function chgPage(caller) {
|
Line 6602 function chgPage(caller) {
|
if (caller == 'next') { |
if (caller == 'next') { |
document.$formname.page.value ++; |
document.$formname.page.value ++; |
} |
} |
document.$formname.submit(); |
document.$formname.submit(); |
return; |
return; |
} |
} |
// ]]> |
|
</script> |
|
ENDSCRIPT |
ENDSCRIPT |
|
} |
|
|
|
sub userlogdisplay_navlinks { |
|
my ($curr,$more_records) = @_; |
|
return unless(ref($curr) eq 'HASH'); |
|
# Navigation Buttons |
|
my $nav_links = '<p>'; |
|
if (($curr->{'page'} > 1) || ($more_records)) { |
|
if (($curr->{'page'} > 1) && ($curr->{'show'} !~ /\D/)) { |
|
$nav_links .= '<input type="button"' |
|
.' onclick="javascript:chgPage('."'previous'".');"' |
|
.' value="'.&mt('Previous [_1] changes',$curr->{'show'}) |
|
.'" /> '; |
|
} |
|
if ($more_records) { |
|
$nav_links .= '<input type="button"' |
|
.' onclick="javascript:chgPage('."'next'".');"' |
|
.' value="'.&mt('Next [_1] changes',$curr->{'show'}) |
|
.'" />'; |
} |
} |
} else { |
|
$r->print('<p class="LC_info">'. |
|
&mt('There are no records to display'). |
|
'</p>'); |
|
} |
} |
$r->print('<input type="hidden" name="page" value="'.$curr{'page'}.'" />'. |
$nav_links .= '</p>'; |
'<input type="hidden" name="action" value="changelogs" /></form>'); |
return $nav_links; |
return; |
|
} |
} |
|
|
sub role_display_filter { |
sub role_display_filter { |
my ($formname,$cdom,$cnum,$curr,$version,$crstype) = @_; |
my ($context,$formname,$cdom,$cnum,$curr,$version,$crstype) = @_; |
my $context = 'course'; |
my $lctype; |
my $lctype = lc($crstype); |
if ($context eq 'course') { |
|
$lctype = lc($crstype); |
|
} |
my $nolink = 1; |
my $nolink = 1; |
my $output = '<table><tr><td valign="top">'. |
my $output = '<table><tr><td valign="top">'. |
'<span class="LC_nobreak"><b>'.&mt('Changes/page:').'</b></span><br />'. |
'<span class="LC_nobreak"><b>'.&mt('Changes/page:').'</b></span><br />'. |
Line 5122 sub role_display_filter {
|
Line 6651 sub role_display_filter {
|
&Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date', |
&Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date', |
$curr->{'rolelog_end_date'},undef, |
$curr->{'rolelog_end_date'},undef, |
undef,undef,undef,undef,undef,undef,$nolink); |
undef,undef,undef,undef,undef,undef,$nolink); |
my %lt = &rolechg_contexts($crstype); |
my %lt = &rolechg_contexts($context,$crstype); |
$output .= '<td valign="top"><b>'.&mt('Window during which changes occurred:').'</b><br /><table><tr><td>'.&mt('After:'). |
$output .= '<td valign="top"><b>'.&mt('Window during which changes occurred:').'</b><br />'. |
'</td><td>'.$startform.'</td></tr><tr><td>'.&mt('Before:').'</td><td>'. |
'<table><tr><td>'.&mt('After:'). |
$endform.'</td></tr></table></td><td> </td>'. |
'</td><td>'.$startform.'</td></tr>'. |
|
'<tr><td>'.&mt('Before:').'</td>'. |
|
'<td>'.$endform.'</td></tr></table>'. |
|
'</td>'. |
|
'<td> </td>'. |
'<td valign="top"><b>'.&mt('Role:').'</b><br />'. |
'<td valign="top"><b>'.&mt('Role:').'</b><br />'. |
'<select name="role"><option value="any"'; |
'<select name="role"><option value="any"'; |
if ($curr->{'role'} eq 'any') { |
if ($curr->{'role'} eq 'any') { |
$output .= ' selected="selected"'; |
$output .= ' selected="selected"'; |
} |
} |
$output .= '>'.&mt('Any').'</option>'."\n"; |
$output .= '>'.&mt('Any').'</option>'."\n"; |
my @roles = &Apache::lonuserutils::course_roles($context,undef,1,$lctype); |
my @roles = &Apache::lonuserutils::roles_by_context($context,1,$crstype); |
foreach my $role (@roles) { |
foreach my $role (@roles) { |
my $plrole; |
my $plrole; |
if ($role eq 'cr') { |
if ($role eq 'cr') { |
Line 5146 sub role_display_filter {
|
Line 6679 sub role_display_filter {
|
} |
} |
$output .= ' <option value="'.$role.'"'.$selstr.'>'.$plrole.'</option>'; |
$output .= ' <option value="'.$role.'"'.$selstr.'>'.$plrole.'</option>'; |
} |
} |
$output .= '</select></td><td> </td><td valign="top"><b>'. |
$output .= '</select></td>'. |
|
'<td> </td>'. |
|
'<td valign="top"><b>'. |
&mt('Context:').'</b><br /><select name="chgcontext">'; |
&mt('Context:').'</b><br /><select name="chgcontext">'; |
foreach my $chgtype ('any','auto','updatenow','createcourse','course','domain','selfenroll','requestcourses') { |
my @posscontexts; |
|
if ($context eq 'course') { |
|
@posscontexts = ('any','automated','updatenow','createcourse','course','domain','selfenroll','requestcourses'); |
|
} elsif ($context eq 'domain') { |
|
@posscontexts = ('any','domain','requestauthor','domconfig','server'); |
|
} else { |
|
@posscontexts = ('any','author','domain'); |
|
} |
|
foreach my $chgtype (@posscontexts) { |
my $selstr = ''; |
my $selstr = ''; |
if ($curr->{'chgcontext'} eq $chgtype) { |
if ($curr->{'chgcontext'} eq $chgtype) { |
$selstr = ' selected="selected"'; |
$selstr = ' selected="selected"'; |
} |
} |
if (($chgtype eq 'auto') || ($chgtype eq 'updatenow')) { |
if ($context eq 'course') { |
next if (!&Apache::lonnet::auto_run($cnum,$cdom)); |
if (($chgtype eq 'automated') || ($chgtype eq 'updatenow')) { |
|
next if (!&Apache::lonnet::auto_run($cnum,$cdom)); |
|
} |
} |
} |
$output .= '<option value="'.$chgtype.'"'.$selstr.'>'.$lt{$chgtype}.'</option>'."\n"; |
$output .= '<option value="'.$chgtype.'"'.$selstr.'>'.$lt{$chgtype}.'</option>'."\n"; |
} |
} |
Line 5167 sub role_display_filter {
|
Line 6712 sub role_display_filter {
|
.'</p>'; |
.'</p>'; |
|
|
# Server version info |
# Server version info |
$output .= '<p style="font-size: smaller;" class="LC_info">' |
my $needsrev = '2.11.0'; |
|
if ($context eq 'course') { |
|
$needsrev = '2.7.0'; |
|
} |
|
|
|
$output .= '<p class="LC_info">' |
.&mt('Only changes made from servers running LON-CAPA [_1] or later are displayed.' |
.&mt('Only changes made from servers running LON-CAPA [_1] or later are displayed.' |
,'2.6.99.0'); |
,$needsrev); |
if ($version) { |
if ($version) { |
$output .= ' '.&mt('This LON-CAPA server is version [_1]',$version); |
$output .= ' '.&mt('This LON-CAPA server is version [_1]',$version); |
} |
} |
$output .= '</p><hr /><br />'; |
$output .= '</p><hr />'; |
return $output; |
return $output; |
} |
} |
|
|
sub rolechg_contexts { |
sub rolechg_contexts { |
my ($crstype) = @_; |
my ($context,$crstype) = @_; |
my %lt = &Apache::lonlocal::texthash ( |
my %lt; |
|
if ($context eq 'course') { |
|
%lt = &Apache::lonlocal::texthash ( |
any => 'Any', |
any => 'Any', |
auto => 'Automated enrollment', |
automated => 'Automated Enrollment', |
updatenow => 'Roster Update', |
updatenow => 'Roster Update', |
createcourse => 'Course Creation', |
createcourse => 'Course Creation', |
course => 'User Management in course', |
course => 'User Management in course', |
Line 5189 sub rolechg_contexts {
|
Line 6741 sub rolechg_contexts {
|
selfenroll => 'Self-enrolled', |
selfenroll => 'Self-enrolled', |
requestcourses => 'Course Request', |
requestcourses => 'Course Request', |
); |
); |
if ($crstype eq 'Community') { |
if ($crstype eq 'Community') { |
$lt{'createcourse'} = &mt('Community Creation'); |
$lt{'createcourse'} = &mt('Community Creation'); |
$lt{'course'} = &mt('User Management in community'); |
$lt{'course'} = &mt('User Management in community'); |
$lt{'requestcourses'} = &mt('Community Request'); |
$lt{'requestcourses'} = &mt('Community Request'); |
} |
} |
|
} elsif ($context eq 'domain') { |
|
%lt = &Apache::lonlocal::texthash ( |
|
any => 'Any', |
|
domain => 'User Management in domain', |
|
requestauthor => 'Authoring Request', |
|
server => 'Command line script (DC role)', |
|
domconfig => 'Self-enrolled', |
|
); |
|
} else { |
|
%lt = &Apache::lonlocal::texthash ( |
|
any => 'Any', |
|
domain => 'User Management in domain', |
|
author => 'User Management by author', |
|
); |
|
} |
return %lt; |
return %lt; |
} |
} |
|
|
Line 5241 sub user_search_result {
|
Line 6808 sub user_search_result {
|
} |
} |
} |
} |
if ($response ne '') { |
if ($response ne '') { |
$response = '<span class="LC_warning">'.$response.'</span>'; |
$response = '<span class="LC_warning">'.$response.'</span><br />'; |
} |
} |
if ($srch->{'srchin'} eq 'instd') { |
if ($srch->{'srchin'} eq 'instd') { |
my $instd_chk = &directorysrch_check($srch); |
my $instd_chk = &instdirectorysrch_check($srch); |
if ($instd_chk ne 'ok') { |
if ($instd_chk ne 'ok') { |
$response = '<span class="LC_warning">'.$instd_chk.'</span>'. |
my $domd_chk = &domdirectorysrch_check($srch); |
'<br />'.&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').'<br /><br />'; |
$response .= '<span class="LC_warning">'.$instd_chk.'</span><br />'; |
|
if ($domd_chk eq 'ok') { |
|
$response .= &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'); |
|
} |
|
$response .= '<br />'; |
|
} |
|
} else { |
|
unless (($context eq 'requestcrs') && ($srch->{'srchtype'} eq 'exact')) { |
|
my $domd_chk = &domdirectorysrch_check($srch); |
|
if ($domd_chk ne 'ok') { |
|
my $instd_chk = &instdirectorysrch_check($srch); |
|
$response .= '<span class="LC_warning">'.$domd_chk.'</span><br />'; |
|
if ($instd_chk eq 'ok') { |
|
$response .= &mt('You may want to search in the institutional directory instead of the LON-CAPA domain.'); |
|
} |
|
$response .= '<br />'; |
|
} |
} |
} |
} |
} |
if ($response ne '') { |
if ($response ne '') { |
Line 5343 sub user_search_result {
|
Line 6926 sub user_search_result {
|
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
'</span><br />'. |
'</span><br />'. |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
'<br /><br />'; |
'<br />'; |
} |
} |
} |
} |
} else { |
} else { |
Line 5411 sub user_search_result {
|
Line 6994 sub user_search_result {
|
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($context,$srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} else { |
} else { |
my $showdom = &display_domain_info($srch->{'srchdomain'}); $response = '<span class="LC_warning">'. |
my $showdom = &display_domain_info($srch->{'srchdomain'}); |
|
$response = '<span class="LC_warning">'. |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
'</span><br />'. |
'</span><br />'. |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
'<br /><br />'; |
'<br />'; |
} |
} |
} |
} |
} |
} |
return ($currstate,$response,$forcenewuser,\%srch_results); |
return ($currstate,$response,$forcenewuser,\%srch_results); |
} |
} |
|
|
sub directorysrch_check { |
sub domdirectorysrch_check { |
|
my ($srch) = @_; |
|
my $response; |
|
my %dom_inst_srch = &Apache::lonnet::get_dom('configuration', |
|
['directorysrch'],$srch->{'srchdomain'}); |
|
my $showdom = &display_domain_info($srch->{'srchdomain'}); |
|
if (ref($dom_inst_srch{'directorysrch'}) eq 'HASH') { |
|
if ($dom_inst_srch{'directorysrch'}{'lcavailable'} eq '0') { |
|
return &mt('LON-CAPA directory search is not available in domain: [_1]',$showdom); |
|
} |
|
if ($dom_inst_srch{'directorysrch'}{'lclocalonly'}) { |
|
if ($env{'request.role.domain'} ne $srch->{'srchdomain'}) { |
|
return &mt('LON-CAPA directory search in domain: [_1] is only allowed for users with a current role in the domain.',$showdom); |
|
} |
|
} |
|
} |
|
return 'ok'; |
|
} |
|
|
|
sub instdirectorysrch_check { |
my ($srch) = @_; |
my ($srch) = @_; |
my $can_search = 0; |
my $can_search = 0; |
my $response; |
my $response; |
Line 5522 sub build_search_response {
|
Line 7125 sub build_search_response {
|
my ($context,$srch,%srch_results) = @_; |
my ($context,$srch,%srch_results) = @_; |
my ($currstate,$response,$forcenewuser); |
my ($currstate,$response,$forcenewuser); |
my %names = ( |
my %names = ( |
'uname' => 'username', |
'uname' => 'username', |
'lastname' => 'last name', |
'lastname' => 'last name', |
'lastfirst' => 'last name, first name', |
'lastfirst' => 'last name, first name', |
'crs' => 'this course', |
'crs' => 'this course', |
'dom' => 'LON-CAPA domain: ', |
'dom' => 'LON-CAPA domain', |
'instd' => 'the institutional directory for domain: ', |
'instd' => 'the institutional directory for domain', |
); |
); |
|
|
my %single = ( |
my %single = ( |
Line 5547 sub build_search_response {
|
Line 7150 sub build_search_response {
|
$currstate = 'modify'; |
$currstate = 'modify'; |
$response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'}); |
$response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'}); |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
$response .= &display_domain_info($srch->{'srchdomain'}); |
$response .= ': '.&display_domain_info($srch->{'srchdomain'}); |
} |
} |
} else { |
} else { # Search has nothing found. Prepare message to user. |
$response = '<span class="LC_warning">'.&mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}",$srch->{'srchterm'}); |
$response = '<span class="LC_warning">'; |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
$response .= &display_domain_info($srch->{'srchdomain'}); |
$response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}: [_2]", |
|
'<b>'.$srch->{'srchterm'}.'</b>', |
|
&display_domain_info($srch->{'srchdomain'})); |
|
} else { |
|
$response .= &mt("$nomatch{$srch->{'srchtype'}} found for the $names{$srch->{'srchby'}} [_1] in $names{$srch->{'srchin'}}.", |
|
'<b>'.$srch->{'srchterm'}.'</b>'); |
} |
} |
$response .= '</span>'; |
$response .= '</span>'; |
|
|
if ($srch->{'srchin'} ne 'alc') { |
if ($srch->{'srchin'} ne 'alc') { |
$forcenewuser = 1; |
$forcenewuser = 1; |
my $cansrchinst = 0; |
my $cansrchinst = 0; |
Line 5588 sub build_search_response {
|
Line 7197 sub build_search_response {
|
&Apache::lonuserutils::can_create_user($createdom,$context); |
&Apache::lonuserutils::can_create_user($createdom,$context); |
my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>'; |
my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>'; |
if ($cancreate) { |
if ($cancreate) { |
my $showdom = &display_domain_info($createdom); |
my $showdom = &display_domain_info($createdom); |
$response .= '<br /><br />' |
$response .= '<br /><br />' |
.'<b>'.&mt('To add a new user:').'</b>' |
.'<b>'.&mt('To add a new user:').'</b>' |
.'<br />'; |
.'<br />'; |
Line 5597 sub build_search_response {
|
Line 7206 sub build_search_response {
|
} else { |
} else { |
$response .= &mt("(You can only create new users in your current role's domain - [_1])",$targetdom); |
$response .= &mt("(You can only create new users in your current role's domain - [_1])",$targetdom); |
} |
} |
$response .= '<ul><li>' |
$response .='<ul><li>' |
.&mt("Set 'Domain/institution to search' to: [_1]",'<span class="LC_cusr_emph">'.$showdom.'</span>') |
.&mt("Set 'Domain/institution to search' to: [_1]",'<span class="LC_cusr_emph">'.$showdom.'</span>') |
.'</li><li>' |
.'</li><li>' |
.&mt("Set 'Search criteria' to: [_1]username is ..... in selected LON-CAPA domain[_2]",'<span class="LC_cusr_emph">','</span>') |
.&mt("Set 'Search criteria' to: [_1]username is ..... in selected LON-CAPA domain[_2]",'<span class="LC_cusr_emph">','</span>') |
Line 5615 sub build_search_response {
|
Line 7224 sub build_search_response {
|
$response .= &mt("You are not authorized to create new users in your current role's domain - [_1].",$targetdom); |
$response .= &mt("You are not authorized to create new users in your current role's domain - [_1].",$targetdom); |
} |
} |
$response .= '<br />' |
$response .= '<br />' |
.&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.' |
.&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.' |
,' <a'.$helplink.'>' |
,' <a'.$helplink.'>' |
,'</a>') |
,'</a>') |
.'<br /><br />'; |
.'<br />'; |
} |
} |
} |
} |
} |
} |
Line 5685 function backPage(formname,prevphase,pre
|
Line 7294 function backPage(formname,prevphase,pre
|
} |
} |
|
|
sub course_level_table { |
sub course_level_table { |
my (%inccourses) = @_; |
my ($inccourses,$showcredits,$defaultcredits) = @_; |
|
return unless (ref($inccourses) eq 'HASH'); |
my $table = ''; |
my $table = ''; |
# Custom Roles? |
# Custom Roles? |
|
|
Line 5700 sub course_level_table {
|
Line 7310 sub course_level_table {
|
'rol' => "Role", |
'rol' => "Role", |
'ext' => "Extent", |
'ext' => "Extent", |
'grs' => "Section", |
'grs' => "Section", |
|
'crd' => "Credits", |
'sta' => "Start", |
'sta' => "Start", |
'end' => "End" |
'end' => "End" |
); |
); |
|
|
foreach my $protectedcourse (sort( keys(%inccourses))) { |
foreach my $protectedcourse (sort(keys(%{$inccourses}))) { |
my $thiscourse=$protectedcourse; |
my $thiscourse=$protectedcourse; |
$thiscourse=~s:_:/:g; |
$thiscourse=~s:_:/:g; |
my %coursedata=&Apache::lonnet::coursedescription($thiscourse); |
my %coursedata=&Apache::lonnet::coursedescription($thiscourse); |
|
my $isowner = &Apache::lonuserutils::is_courseowner($protectedcourse,$coursedata{'internal.courseowner'}); |
my $area=$coursedata{'description'}; |
my $area=$coursedata{'description'}; |
my $crstype=$coursedata{'type'}; |
my $crstype=$coursedata{'type'}; |
if (!defined($area)) { $area=&mt('Unavailable course').': '.$protectedcourse; } |
if (!defined($area)) { $area=&mt('Unavailable course').': '.$protectedcourse; } |
Line 5722 sub course_level_table {
|
Line 7334 sub course_level_table {
|
my @roles = &Apache::lonuserutils::roles_by_context('course','',$crstype); |
my @roles = &Apache::lonuserutils::roles_by_context('course','',$crstype); |
foreach my $role (@roles) { |
foreach my $role (@roles) { |
my $plrole=&Apache::lonnet::plaintext($role,$crstype); |
my $plrole=&Apache::lonnet::plaintext($role,$crstype); |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse)) { |
if ((&Apache::lonnet::allowed('c'.$role,$thiscourse)) || |
|
((($role eq 'cc') || ($role eq 'co')) && ($isowner))) { |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$plrole,\%sections_count,\%lt); |
$plrole,\%sections_count,\%lt, |
|
$showcredits,$defaultcredits,$crstype); |
} elsif ($env{'request.course.sec'} ne '') { |
} elsif ($env{'request.course.sec'} ne '') { |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse.'/'. |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse.'/'. |
$env{'request.course.sec'})) { |
$env{'request.course.sec'})) { |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$plrole,\%sections_count,\%lt); |
$plrole,\%sections_count,\%lt, |
|
$showcredits,$defaultcredits,$crstype); |
} |
} |
} |
} |
} |
} |
if (&Apache::lonnet::allowed('ccr',$thiscourse)) { |
if (&Apache::lonnet::allowed('ccr',$thiscourse)) { |
foreach my $cust (sort keys %customroles) { |
foreach my $cust (sort(keys(%customroles))) { |
|
next if ($crstype eq 'Community' && $customroles{$cust} =~ /bre\&S/); |
my $role = 'cr_cr_'.$env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cust; |
my $role = 'cr_cr_'.$env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cust; |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$cust,\%sections_count,\%lt); |
$cust,\%sections_count,\%lt, |
|
$showcredits,$defaultcredits,$crstype); |
} |
} |
} |
} |
} |
} |
Line 5750 sub course_level_table {
|
Line 7367 sub course_level_table {
|
$result .= |
$result .= |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
'<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}.'</th> |
'<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'."\n". |
<th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
'<th>'.$lt{'ext'}.'</th><th>'."\n"; |
|
if ($showcredits) { |
|
$result .= $lt{'crd'}.'</th>'; |
|
} |
|
$result .= |
|
'<th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th>'."\n". |
|
'<th>'.$lt{'end'}.'</th>'. |
&Apache::loncommon::end_data_table_header_row(). |
&Apache::loncommon::end_data_table_header_row(). |
$table. |
$table. |
&Apache::loncommon::end_data_table(); |
&Apache::loncommon::end_data_table(); |
Line 5759 $table.
|
Line 7382 $table.
|
} |
} |
|
|
sub course_level_row { |
sub course_level_row { |
my ($protectedcourse,$role,$area,$domain,$plrole,$sections_count,$lt) = @_; |
my ($protectedcourse,$role,$area,$domain,$plrole,$sections_count, |
|
$lt,$showcredits,$defaultcredits,$crstype) = @_; |
|
my $creditem; |
my $row = &Apache::loncommon::start_data_table_row(). |
my $row = &Apache::loncommon::start_data_table_row(). |
' <td><input type="checkbox" name="act_'. |
' <td><input type="checkbox" name="act_'. |
$protectedcourse.'_'.$role.'" /></td>'."\n". |
$protectedcourse.'_'.$role.'" /></td>'."\n". |
' <td>'.$plrole.'</td>'."\n". |
' <td>'.$plrole.'</td>'."\n". |
' <td>'.$area.'<br />Domain: '.$domain.'</td>'."\n"; |
' <td>'.$area.'<br />Domain: '.$domain.'</td>'."\n"; |
|
if (($showcredits) && ($role eq 'st') && ($crstype eq 'Course')) { |
|
$row .= |
|
'<td><input type="text" name="credits_'.$protectedcourse.'_'. |
|
$role.'" size="3" value="'.$defaultcredits.'" /></td>'; |
|
} else { |
|
$row .= '<td> </td>'; |
|
} |
if (($role eq 'cc') || ($role eq 'co')) { |
if (($role eq 'cc') || ($role eq 'co')) { |
$row .= '<td> </td>'; |
$row .= '<td> </td>'; |
} elsif ($env{'request.course.sec'} ne '') { |
} elsif ($env{'request.course.sec'} ne '') { |
Line 5790 sub course_level_row {
|
Line 7422 sub course_level_row {
|
'</tr></table></td>'."\n"; |
'</tr></table></td>'."\n"; |
} else { |
} else { |
$row .= '<td><input type="text" size="10" '. |
$row .= '<td><input type="text" size="10" '. |
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n"; |
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n"; |
} |
} |
} |
} |
$row .= <<ENDTIMEENTRY; |
$row .= <<ENDTIMEENTRY; |
Line 5806 ENDTIMEENTRY
|
Line 7438 ENDTIMEENTRY
|
} |
} |
|
|
sub course_level_dc { |
sub course_level_dc { |
my ($dcdom) = @_; |
my ($dcdom,$showcredits) = @_; |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'. |
my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'. |
'<input type="hidden" name="origdom" value="'.$dcdom.'" />'. |
'<input type="hidden" name="origdom" value="'.$dcdom.'" />'. |
'<input type="hidden" name="dccourse" value="" />'; |
'<input type="hidden" name="dccourse" value="" />'; |
my $courseform='<b>'.&Apache::loncommon::selectcourse_link |
my $courseform=&Apache::loncommon::selectcourse_link |
('cu','dccourse','dcdomain','coursedesc',undef,undef,'Course').'</b>'; |
('cu','dccourse','dcdomain','coursedesc',undef,undef,'Select','crstype'); |
my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($dcdom,'currsec','cu','role','Course/Community Browser'); |
my $credit_elem; |
|
if ($showcredits) { |
|
$credit_elem = 'credits'; |
|
} |
|
my $cb_jscript = &Apache::loncommon::coursebrowser_javascript($dcdom,'currsec','cu','role','Course/Community Browser',$credit_elem); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'rol' => "Role", |
'rol' => "Role", |
'grs' => "Section", |
'grs' => "Section", |
Line 5823 sub course_level_dc {
|
Line 7459 sub course_level_dc {
|
'sta' => "Start", |
'sta' => "Start", |
'end' => "End", |
'end' => "End", |
'ssd' => "Set Start Date", |
'ssd' => "Set Start Date", |
'sed' => "Set End Date" |
'sed' => "Set End Date", |
|
'scc' => "Course/Community", |
|
'crd' => "Credits", |
); |
); |
my $header = '<h4>'.&mt('Course Level').'</h4>'. |
my $header = '<h4>'.&mt('Course/Community Level').'</h4>'. |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
'<th>'.$courseform.'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'grs'}.'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
'<th>'.$lt{'scc'}.'</th><th>'.$lt{'rol'}.'</th>'."\n". |
|
'<th>'.$lt{'grs'}.'</th>'."\n"; |
|
$header .= '<th>'.$lt{'crd'}.'</th>'."\n" if ($showcredits); |
|
$header .= '<th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'."\n". |
&Apache::loncommon::end_data_table_header_row(); |
&Apache::loncommon::end_data_table_header_row(); |
my $otheritems = &Apache::loncommon::start_data_table_row()."\n". |
my $otheritems = &Apache::loncommon::start_data_table_row()."\n". |
'<td><input type="text" name="coursedesc" value="" onfocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc',''".')" /></td>'."\n". |
'<td><br /><span class="LC_nobreak"><input type="text" name="coursedesc" value="" onfocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc','','','','crstype'".')" />'. |
'<td><select name="role">'."\n"; |
$courseform.(' ' x4).'</span></td>'."\n". |
|
'<td valign="top"><br /><select name="role">'."\n"; |
foreach my $role (@roles) { |
foreach my $role (@roles) { |
my $plrole=&Apache::lonnet::plaintext($role); |
my $plrole=&Apache::lonnet::plaintext($role); |
$otheritems .= ' <option value="'.$role.'">'.$plrole; |
$otheritems .= ' <option value="'.$role.'">'.$plrole.'</option>'; |
} |
} |
if ( keys %customroles > 0) { |
if ( keys(%customroles) > 0) { |
foreach my $cust (sort keys %customroles) { |
foreach my $cust (sort(keys(%customroles))) { |
my $custrole='cr_cr_'.$env{'user.domain'}. |
my $custrole='cr_cr_'.$env{'user.domain'}. |
'_'.$env{'user.name'}.'_'.$cust; |
'_'.$env{'user.name'}.'_'.$cust; |
$otheritems .= ' <option value="'.$custrole.'">'.$cust; |
$otheritems .= ' <option value="'.$custrole.'">'.$cust.'</option>'; |
} |
} |
} |
} |
$otheritems .= '</select></td><td>'. |
$otheritems .= '</select></td><td>'. |
'<table border="0" cellspacing="0" cellpadding="0">'. |
'<table border="0" cellspacing="0" cellpadding="0">'. |
'<tr><td valign="top"><b>'.$lt{'exs'}.'</b><br /><select name="currsec">'. |
'<tr><td valign="top"><b>'.$lt{'exs'}.'</b><br /><select name="currsec">'. |
' <option value=""><--'.&mt('Pick course first').'</select></td>'. |
' <option value=""><--'.&mt('Pick course first').'</option></select></td>'. |
'<td> </td>'. |
'<td> </td>'. |
'<td valign="top"> <b>'.$lt{'new'}.'</b><br />'. |
'<td valign="top"> <b>'.$lt{'new'}.'</b><br />'. |
'<input type="text" name="newsec" value="" />'. |
'<input type="text" name="newsec" value="" />'. |
'<input type="hidden" name="section" value="" />'. |
'<input type="hidden" name="section" value="" />'. |
'<input type="hidden" name="groups" value="" /></td>'. |
'<input type="hidden" name="groups" value="" />'. |
'</tr></table></td>'; |
'<input type="hidden" name="crstype" value="" /></td>'. |
|
'</tr></table></td>'."\n"; |
|
if ($showcredits) { |
|
$otheritems .= '<td><br />'."\n". |
|
'<input type="text" size="3" name="credits" value="" /></td>'."\n"; |
|
} |
$otheritems .= <<ENDTIMEENTRY; |
$otheritems .= <<ENDTIMEENTRY; |
<td><input type="hidden" name="start" value='' /> |
<td><br /><input type="hidden" name="start" value='' /> |
<a href= |
<a href= |
"javascript:pjump('date_start','Start Date',document.cu.start.value,'start','cu.pres','dateset')">$lt{'ssd'}</a></td> |
"javascript:pjump('date_start','Start Date',document.cu.start.value,'start','cu.pres','dateset')">$lt{'ssd'}</a></td> |
<td><input type="hidden" name="end" value='' /> |
<td><br /><input type="hidden" name="end" value='' /> |
<a href= |
<a href= |
"javascript:pjump('date_end','End Date',document.cu.end.value,'end','cu.pres','dateset')">$lt{'sed'}</a></td> |
"javascript:pjump('date_end','End Date',document.cu.end.value,'end','cu.pres','dateset')">$lt{'sed'}</a></td> |
ENDTIMEENTRY |
ENDTIMEENTRY |
Line 5868 ENDTIMEENTRY
|
Line 7515 ENDTIMEENTRY
|
} |
} |
|
|
sub update_selfenroll_config { |
sub update_selfenroll_config { |
my ($r,$context,$permission) = @_; |
my ($r,$cid,$cdom,$cnum,$context,$crstype,$currsettings) = @_; |
my ($row,$lt) = &get_selfenroll_titles(); |
return unless (ref($currsettings) eq 'HASH'); |
my %curr_groups = &Apache::longroup::coursegroups(); |
my ($row,$lt) = &Apache::lonuserutils::get_selfenroll_titles(); |
|
my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum); |
my (%changes,%warning); |
my (%changes,%warning); |
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
my $curr_types; |
my $curr_types; |
|
my %noedit; |
|
unless ($context eq 'domain') { |
|
%noedit = &get_noedit_fields($cdom,$cnum,$crstype,$row); |
|
} |
if (ref($row) eq 'ARRAY') { |
if (ref($row) eq 'ARRAY') { |
foreach my $item (@{$row}) { |
foreach my $item (@{$row}) { |
|
next if ($noedit{$item}); |
if ($item eq 'enroll_dates') { |
if ($item eq 'enroll_dates') { |
my (%currenrolldate,%newenrolldate); |
my (%currenrolldate,%newenrolldate); |
foreach my $type ('start','end') { |
foreach my $type ('start','end') { |
$currenrolldate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_date'}; |
$currenrolldate{$type} = $currsettings->{'selfenroll_'.$type.'_date'}; |
$newenrolldate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_date'); |
$newenrolldate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_date'); |
if ($newenrolldate{$type} ne $currenrolldate{$type}) { |
if ($newenrolldate{$type} ne $currenrolldate{$type}) { |
$changes{'internal.selfenroll_'.$type.'_date'} = $newenrolldate{$type}; |
$changes{'internal.selfenroll_'.$type.'_date'} = $newenrolldate{$type}; |
Line 5889 sub update_selfenroll_config {
|
Line 7540 sub update_selfenroll_config {
|
} elsif ($item eq 'access_dates') { |
} elsif ($item eq 'access_dates') { |
my (%currdate,%newdate); |
my (%currdate,%newdate); |
foreach my $type ('start','end') { |
foreach my $type ('start','end') { |
$currdate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_access'}; |
$currdate{$type} = $currsettings->{'selfenroll_'.$type.'_access'}; |
$newdate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_access'); |
$newdate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_access'); |
if ($newdate{$type} ne $currdate{$type}) { |
if ($newdate{$type} ne $currdate{$type}) { |
$changes{'internal.selfenroll_'.$type.'_access'} = $newdate{$type}; |
$changes{'internal.selfenroll_'.$type.'_access'} = $newdate{$type}; |
} |
} |
} |
} |
} elsif ($item eq 'types') { |
} elsif ($item eq 'types') { |
$curr_types = |
$curr_types = $currsettings->{'selfenroll_'.$item}; |
$env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item}; |
|
if ($env{'form.selfenroll_all'}) { |
if ($env{'form.selfenroll_all'}) { |
if ($curr_types ne '*') { |
if ($curr_types ne '*') { |
$changes{'internal.selfenroll_types'} = '*'; |
$changes{'internal.selfenroll_types'} = '*'; |
Line 5922 sub update_selfenroll_config {
|
Line 7572 sub update_selfenroll_config {
|
$newnum ++; |
$newnum ++; |
} |
} |
} |
} |
for (my $j=0; $j<$env{'form.selfenroll_types_total'}; $j++) { if ((!grep(/^$j$/,@deletedoms)) && (!grep(/^$j$/,@activations))) { |
for (my $j=0; $j<$env{'form.selfenroll_types_total'}; $j++) { |
|
if ((!grep(/^$j$/,@deletedoms)) && (!grep(/^$j$/,@activations))) { |
my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$j); |
my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$j); |
if (@types > 0) { |
if (@types > 0) { |
@types = sort(@types); |
@types = sort(@types); |
Line 5965 sub update_selfenroll_config {
|
Line 7616 sub update_selfenroll_config {
|
my $newlimit = $env{'form.selfenroll_limit'}; |
my $newlimit = $env{'form.selfenroll_limit'}; |
my $newcap = $env{'form.selfenroll_cap'}; |
my $newcap = $env{'form.selfenroll_cap'}; |
$newcap =~s/\s+//g; |
$newcap =~s/\s+//g; |
my $currlimit = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_limit'}; |
my $currlimit = $currsettings->{'selfenroll_limit'}; |
$currlimit = 'none' if ($currlimit eq ''); |
$currlimit = 'none' if ($currlimit eq ''); |
my $currcap = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_cap'}; |
my $currcap = $currsettings->{'selfenroll_cap'}; |
if ($newlimit ne $currlimit) { |
if ($newlimit ne $currlimit) { |
if ($newlimit ne 'none') { |
if ($newlimit ne 'none') { |
if ($newcap =~ /^\d+$/) { |
if ($newcap =~ /^\d+$/) { |
Line 5976 sub update_selfenroll_config {
|
Line 7627 sub update_selfenroll_config {
|
} |
} |
$changes{'internal.selfenroll_limit'} = $newlimit; |
$changes{'internal.selfenroll_limit'} = $newlimit; |
} else { |
} else { |
$warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); |
$warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'. |
|
&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); |
} |
} |
} elsif ($currcap ne '') { |
} elsif ($currcap ne '') { |
$changes{'internal.selfenroll_cap'} = ''; |
$changes{'internal.selfenroll_cap'} = ''; |
Line 5988 sub update_selfenroll_config {
|
Line 7640 sub update_selfenroll_config {
|
$changes{'internal.selfenroll_cap'} = $newcap; |
$changes{'internal.selfenroll_cap'} = $newcap; |
} |
} |
} else { |
} else { |
$warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'.&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); |
$warning{$item} = &mt('Maximum enrollment setting unchanged.').'<br />'. |
|
&mt('The value provided was invalid - it must be a positive integer if enrollment is being limited.'); |
} |
} |
} |
} |
} elsif ($item eq 'approval') { |
} elsif ($item eq 'approval') { |
my (@currnotified,@newnotified); |
my (@currnotified,@newnotified); |
my $currapproval = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}; |
my $currapproval = $currsettings->{'selfenroll_approval'}; |
my $currnotifylist = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_notifylist'}; |
my $currnotifylist = $currsettings->{'selfenroll_notifylist'}; |
if ($currnotifylist ne '') { |
if ($currnotifylist ne '') { |
@currnotified = split(/,/,$currnotifylist); |
@currnotified = split(/,/,$currnotifylist); |
@currnotified = sort(@currnotified); |
@currnotified = sort(@currnotified); |
Line 6030 sub update_selfenroll_config {
|
Line 7683 sub update_selfenroll_config {
|
} |
} |
} |
} |
} else { |
} else { |
my $curr_val = |
my $curr_val = $currsettings->{'selfenroll_'.$item}; |
$env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item}; |
|
my $newval = $env{'form.selfenroll_'.$item}; |
my $newval = $env{'form.selfenroll_'.$item}; |
if ($item eq 'section') { |
if ($item eq 'section') { |
$newval = $env{'form.sections'}; |
$newval = $env{'form.sections'}; |
if (defined($curr_groups{$newval})) { |
if (defined($curr_groups{$newval})) { |
$newval = $curr_val; |
$newval = $curr_val; |
$warning{$item} = &mt('Section for self-enrolled users unchanged as the proposed section is a group').'<br />'.&mt('Group names and section names must be distinct'); |
$warning{$item} = &mt('Section for self-enrolled users unchanged as the proposed section is a group').'<br />'. |
|
&mt('Group names and section names must be distinct'); |
} elsif ($newval eq 'all') { |
} elsif ($newval eq 'all') { |
$newval = $curr_val; |
$newval = $curr_val; |
$warning{$item} = &mt('Section for self-enrolled users unchanged, as "all" is a reserved section name.'); |
$warning{$item} = &mt('Section for self-enrolled users unchanged, as "all" is a reserved section name.'); |
Line 6067 sub update_selfenroll_config {
|
Line 7720 sub update_selfenroll_config {
|
my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.', |
my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.', |
$cnum,undef,undef,'Course'); |
$cnum,undef,undef,'Course'); |
my $chome = &Apache::lonnet::homeserver($cnum,$cdom); |
my $chome = &Apache::lonnet::homeserver($cnum,$cdom); |
if (ref($crsinfo{$env{'request.course.id'}}) eq 'HASH') { |
if (ref($crsinfo{$cid}) eq 'HASH') { |
foreach my $item ('selfenroll_types','selfenroll_start_date','selfenroll_end_date') { |
foreach my $item ('selfenroll_types','selfenroll_start_date','selfenroll_end_date') { |
if (exists($changes{'internal.'.$item})) { |
if (exists($changes{'internal.'.$item})) { |
$crsinfo{$env{'request.course.id'}}{$item} = |
$crsinfo{$cid}{$item} = $changes{'internal.'.$item}; |
$changes{'internal.'.$item}; |
|
} |
} |
} |
} |
my $crsputresult = |
my $crsputresult = |
Line 6108 sub update_selfenroll_config {
|
Line 7760 sub update_selfenroll_config {
|
if ($changes{'internal.selfenroll_cap'} ne '') { |
if ($changes{'internal.selfenroll_cap'} ne '') { |
$newcap = $changes{'internal.selfenroll_cap'} |
$newcap = $changes{'internal.selfenroll_cap'} |
} else { |
} else { |
$newcap = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_cap'}; |
$newcap = $currsettings->{'selfenroll_cap'}; |
} |
} |
if ($changes{'internal.selfenroll_limit'} eq 'none') { |
if ($changes{'internal.selfenroll_limit'} eq 'none') { |
$newval = &mt('No limit'); |
$newval = &mt('No limit'); |
Line 6118 sub update_selfenroll_config {
|
Line 7770 sub update_selfenroll_config {
|
} elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') { |
} elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') { |
$newval = &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap); |
$newval = &mt('New self-enrollment no longer allowed when total number of self-enrolled students reaches [_1].',$newcap); |
} else { |
} else { |
my $currlimit = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_limit'}; |
my $currlimit = $currsettings->{'selfenroll_limit'}; |
if ($currlimit eq 'allstudents') { |
if ($currlimit eq 'allstudents') { |
$newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap); |
$newval = &mt('New self-enrollment no longer allowed when total (all students) reaches [_1].',$newcap); |
} elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') { |
} elsif ($changes{'internal.selfenroll_limit'} eq 'selfenrolled') { |
Line 6130 sub update_selfenroll_config {
|
Line 7782 sub update_selfenroll_config {
|
} elsif ($item eq 'approval') { |
} elsif ($item eq 'approval') { |
if ((exists($changes{'internal.selfenroll_approval'})) || |
if ((exists($changes{'internal.selfenroll_approval'})) || |
(exists($changes{'internal.selfenroll_notifylist'}))) { |
(exists($changes{'internal.selfenroll_notifylist'}))) { |
|
my %selfdescs = &Apache::lonuserutils::selfenroll_default_descs(); |
my ($newval,$newnotify); |
my ($newval,$newnotify); |
if (exists($changes{'internal.selfenroll_notifylist'})) { |
if (exists($changes{'internal.selfenroll_notifylist'})) { |
$newnotify = $changes{'internal.selfenroll_notifylist'}; |
$newnotify = $changes{'internal.selfenroll_notifylist'}; |
} else { |
} else { |
$newnotify = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_notifylist'}; |
$newnotify = $currsettings->{'selfenroll_notifylist'}; |
} |
} |
if ($changes{'internal.selfenroll_approval'}) { |
if (exists($changes{'internal.selfenroll_approval'})) { |
$newval = &mt('Yes'); |
if ($changes{'internal.selfenroll_approval'} !~ /^[012]$/) { |
} elsif ($changes{'internal.selfenroll_approval'} eq '0') { |
$changes{'internal.selfenroll_approval'} = '0'; |
$newval = &mt('No'); |
} |
|
$newval = $selfdescs{'approval'}{$changes{'internal.selfenroll_approval'}}; |
} else { |
} else { |
my $currapproval = |
my $currapproval = $currsettings->{'selfenroll_approval'}; |
$env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_approval'}; |
if ($currapproval !~ /^[012]$/) { |
if ($currapproval) { |
$currapproval = 0; |
$newval = &mt('Yes'); |
|
} else { |
|
$newval = &mt('No'); |
|
} |
} |
|
$newval = $selfdescs{'approval'}{$currapproval}; |
} |
} |
$r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval)); |
$r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval)); |
if ($newnotify) { |
if ($newnotify) { |
Line 6178 sub update_selfenroll_config {
|
Line 7830 sub update_selfenroll_config {
|
} |
} |
} |
} |
$r->print('</ul>'); |
$r->print('</ul>'); |
my %newenvhash; |
if ($env{'course.'.$cid.'.description'} ne '') { |
foreach my $key (keys(%changes)) { |
my %newenvhash; |
$newenvhash{'course.'.$env{'request.course.id'}.'.'.$key} = $changes{$key}; |
foreach my $key (keys(%changes)) { |
|
$newenvhash{'course.'.$cid.'.'.$key} = $changes{$key}; |
|
} |
|
&Apache::lonnet::appenv(\%newenvhash); |
} |
} |
&Apache::lonnet::appenv(\%newenvhash); |
|
} else { |
} else { |
$r->print(&mt('An error occurred when saving changes to self-enrollment settings in this course.').'<br />'.&mt('The error was: [_1].',$putresult)); |
$r->print(&mt('An error occurred when saving changes to self-enrollment settings in this course.').'<br />'. |
|
&mt('The error was: [_1].',$putresult)); |
} |
} |
} else { |
} else { |
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
Line 6192 sub update_selfenroll_config {
|
Line 7847 sub update_selfenroll_config {
|
} else { |
} else { |
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
} |
} |
my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum); |
my $visactions = &cat_visibility(); |
if (ref($visactions) eq 'HASH') { |
my ($cathash,%cattype); |
if (!$visible) { |
my %domconfig = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom); |
$r->print('<br />'.$visactions->{'miss'}.'<br />'.$visactions->{'yous'}. |
if (ref($domconfig{'coursecategories'}) eq 'HASH') { |
'<br />'); |
$cathash = $domconfig{'coursecategories'}{'cats'}; |
if (ref($vismsgs) eq 'ARRAY') { |
$cattype{'auth'} = $domconfig{'coursecategories'}{'auth'}; |
$r->print('<br />'.$visactions->{'take'}.'<ul>'); |
$cattype{'unauth'} = $domconfig{'coursecategories'}{'unauth'}; |
foreach my $item (@{$vismsgs}) { |
} else { |
$r->print('<li>'.$visactions->{$item}.'</li>'); |
$cathash = {}; |
|
$cattype{'auth'} = 'std'; |
|
$cattype{'unauth'} = 'std'; |
|
} |
|
if (($cattype{'auth'} eq 'none') && ($cattype{'unauth'} eq 'none')) { |
|
$r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}. |
|
'<br />'. |
|
'<br />'.$visactions->{'take'}.'<ul>'. |
|
'<li>'.$visactions->{'dc_chgconf'}.'</li>'. |
|
'</ul>'); |
|
} elsif (($cattype{'auth'} !~ /^(std|domonly)$/) && ($cattype{'unauth'} !~ /^(std|domonly)$/)) { |
|
if ($currsettings->{'uniquecode'}) { |
|
$r->print('<span class="LC_info">'.$visactions->{'vis'}.'</span>'); |
|
} else { |
|
$r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}. |
|
'<br />'. |
|
'<br />'.$visactions->{'take'}.'<ul>'. |
|
'<li>'.$visactions->{'dc_setcode'}.'</li>'. |
|
'</ul><br />'); |
|
} |
|
} else { |
|
my ($visible,$cansetvis,$vismsgs) = &visible_in_stdcat($cdom,$cnum,\%domconfig); |
|
if (ref($visactions) eq 'HASH') { |
|
if (!$visible) { |
|
$r->print('<br /><span class="LC_warning">'.$visactions->{'miss'}.'</span><br />'.$visactions->{'yous'}. |
|
'<br />'); |
|
if (ref($vismsgs) eq 'ARRAY') { |
|
$r->print('<br />'.$visactions->{'take'}.'<ul>'); |
|
foreach my $item (@{$vismsgs}) { |
|
$r->print('<li>'.$visactions->{$item}.'</li>'); |
|
} |
|
$r->print('</ul>'); |
} |
} |
$r->print('</ul>'); |
$r->print($cansetvis); |
} |
} |
$r->print($cansetvis); |
|
} |
} |
} |
} |
return; |
return; |
} |
} |
|
|
sub get_selfenroll_titles { |
|
my @row = ('types','registered','enroll_dates','access_dates','section', |
|
'approval','limit'); |
|
my %lt = &Apache::lonlocal::texthash ( |
|
types => 'Users allowed to self-enroll in this course', |
|
registered => 'Restrict self-enrollment to students officially registered for the course', |
|
enroll_dates => 'Dates self-enrollment available', |
|
access_dates => 'Course access dates assigned to self-enrolling users', |
|
section => 'Section assigned to self-enrolling users', |
|
approval => 'Self-enrollment requests need approval?', |
|
limit => 'Enrollment limit', |
|
); |
|
return (\@row,\%lt); |
|
} |
|
|
|
#---------------------------------------------- end functions for &phase_two |
#---------------------------------------------- end functions for &phase_two |
|
|
#--------------------------------- functions for &phase_two and &phase_three |
#--------------------------------- functions for &phase_two and &phase_three |