version 1.24, 2004/11/09 16:29:32
|
version 1.37, 2006/12/07 21:06:57
|
Line 31 package Apache::loncommunicate;
|
Line 31 package Apache::loncommunicate;
|
|
|
use strict; |
use strict; |
use Apache::Constants qw(:common); |
use Apache::Constants qw(:common); |
use Apache::lonmsg(); |
use Apache::lonmsgdisplay(); |
use Apache::loncommon; |
use Apache::loncommon; |
use Apache::lonlocal; |
use Apache::lonlocal; |
|
use Apache::lonnet; |
|
|
sub menu { |
sub menu { |
my $r=shift; |
my $r=shift; |
|
my $crstype = 'Course'; |
|
my $usertype = 'Student'; |
|
if (defined($env{'course.'.$env{'request.course.id'}.'.type'})) { |
|
$crstype = $env{'course.'.$env{'request.course.id'}.'.type'}; |
|
if ($crstype eq 'Group') { |
|
$usertype = 'Member'; |
|
} |
|
} |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'mnf' => 'Make New Folder', |
|
'vcm' => 'View Critical Messages', |
'vcm' => 'View Critical Messages', |
'smu' => 'Send Message to User(s)', |
'smu' => 'Send Message to User(s)', |
'bmc' => 'Broadcast Message to Course', |
'bmc' => "Broadcast Message to $crstype", |
'dmu' => 'Distribute Messages from Uploaded File to Course', |
'dmu' => "Distribute Messages from Uploaded File to $crstype", |
'unr' => |
'unr' => |
'User Notes, Records of Face-to-Face Discussions, and Critical Messages', |
'User Notes, Records of Face-to-Face Discussions, and Critical Messages', |
|
|
'cbs' => 'Configure blocking of student communication during exams' |
'cbs' => "Configure Blocking of $usertype Communication during Exams", |
|
'blog' => 'Add or Edit Blog Entries' |
|
|
); |
); |
my %help=(); |
my %help=(); |
Line 54 sub menu {
|
Line 63 sub menu {
|
'Course_Broadcast_Message') { |
'Course_Broadcast_Message') { |
$help{$_}=&Apache::loncommon::help_open_topic($_); |
$help{$_}=&Apache::loncommon::help_open_topic($_); |
} |
} |
my $folderlist=&Apache::lonmsg::folderlist(); |
|
# ------------------------------------------------------------------------ Menu |
# ------------------------------------------------------------------------ Menu |
$r->print(<<END); |
my ($can_srm,$can_dcm); |
$folderlist |
if ($env{'request.course.id'}) { |
<form method="post" action="/adm/email"> |
if ((&Apache::lonnet::allowed('srm',$env{'request.course.id'})) || |
<input type="submit" value="$lt{'mnf'}" /> |
(&Apache::lonnet::allowed('srm',$env{'request.course.id'}.'/'. |
<input type="text" size="15" name="newfolder" value="" /> |
$env{'request.course.sec'}))) { |
</form> |
$can_srm = 1; |
|
} |
|
if ((&Apache::lonnet::allowed('dcm',$env{'request.course.id'})) || |
|
(&Apache::lonnet::allowed('dcm',$env{'request.course.id'}.'/'. |
|
$env{'request.course.sec'}))) { |
|
$can_dcm = 1; |
|
} |
|
} |
|
$r->print(<<END); |
<table cellspacing="10" cellpadding="2"> |
<table cellspacing="10" cellpadding="2"> |
<tr><td bgcolor="#FFFFAA"> |
<tr> |
|
<td bgcolor="#FFFFAA"> |
<b><a href="/adm/email?compose=individual">$lt{'smu'}</a></b> |
<b><a href="/adm/email?compose=individual">$lt{'smu'}</a></b> |
</td></tr> |
</td> |
|
<td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/$env{'user.domain'}/$env{'user.name'}/_rss.html">$lt{'blog'}</a></b> |
|
</td> |
|
</tr> |
END |
END |
if (($ENV{'request.course.id'}) && |
if ($can_srm || !$can_dcm) { |
(&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) { |
$r->print('<tr>'); |
|
} |
|
if ($can_srm) { |
$r->print(<<END); |
$r->print(<<END); |
<tr><td bgcolor="#FFFFAA"> |
<td bgcolor="#FFFFAA"> |
<b><a href="/adm/email?compose=group">$lt{'bmc'}</a></b>$help{'Course_Broadcast_Message'} |
<b><a href="/adm/email?compose=group">$lt{'bmc'}</a></b>$help{'Course_Broadcast_Message'} |
</td></tr> |
</td> |
<tr><td bgcolor="#FFFFAA"> |
<td bgcolor="#FFFFAA"> |
<b><a href="/adm/email?compose=upload">$lt{'dmu'}</a></b> |
<b><a href="/adm/email?compose=upload">$lt{'dmu'}</a></b> |
</td></tr> |
</td></tr> |
<tr><td bgcolor="#FFFFAA"> |
<tr><td bgcolor="#FFFFAA"> |
<b><a href="/adm/email?recordftf=query">$lt{'unr'}</a></b>$help{'Course_Face_To_Face_Records,Course_Critical_Message'} |
<b><a href="/adm/email?recordftf=query">$lt{'unr'}</a></b>$help{'Course_Face_To_Face_Records,Course_Critical_Message'} |
</td></tr> |
</td> |
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?block=display">$lt{'cbs'}</a> |
|
</td></tr> |
|
END |
END |
} |
} |
|
if ($can_dcm) { |
|
$r->print(' |
|
<td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?block=display">'.$lt{'cbs'}.'</a></b> |
|
</td>'); |
|
} |
|
if ($can_srm || $can_dcm) { |
|
$r->print('</tr>'); |
|
} |
$r->print('</table>'); |
$r->print('</table>'); |
} |
} |
|
|
Line 95 sub handler {
|
Line 124 sub handler {
|
# |
# |
# Start document |
# Start document |
# |
# |
$r->print(<<END); |
|
<html> |
|
<head> |
|
<title>The LearningOnline Network with CAPA</title> |
|
</head> |
|
END |
|
|
|
# ----------------------------------------------------------------- Breadcrumbs |
# ----------------------------------------------------------------- Breadcrumbs |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
Line 110 END
|
Line 133 END
|
faq=>12,bug=>'Communication Tools',}); |
faq=>12,bug=>'Communication Tools',}); |
|
|
# ---------------------------------------------------------------------- Header |
# ---------------------------------------------------------------------- Header |
&Apache::lonmsg::header($r); |
&Apache::lonmsgdisplay::header($r); |
&menu($r); |
&menu($r); |
&Apache::lonmsg::disnew($r); |
&Apache::lonmsgdisplay::disall($r,'new'); |
|
$r->print(&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|