version 1.21, 2004/03/26 19:35:59
|
version 1.47, 2012/04/18 19:56:59
|
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 %lt=&Apache::lonlocal::texthash( |
my $crstype = 'course'; |
'vam' => 'View All Messages', |
my $usertype = 'student'; |
'vcm' => 'View Critical Messages', |
if (defined($env{'course.'.$env{'request.course.id'}.'.type'})) { |
'smu' => 'Send Message to User(s)', |
$crstype = $env{'course.'.$env{'request.course.id'}.'.type'}; |
'bmc' => 'Broadcast Message to Course', |
if ($crstype eq 'Community') { |
'dmu' => 'Distribute Messages from Uploaded File to Course', |
$usertype = 'member'; |
'unr' => |
} |
'User Notes, Records of Face-to-Face Discussions, and Critical Messages', |
|
'nm' => 'New Messages', |
|
'su' => 'Subject', |
|
'da' => 'Date', |
|
'us' => 'Username', |
|
'op' => 'Open', |
|
'do' => 'Domain' |
|
); |
|
my %help=(); |
|
foreach ('Course_Face_To_Face_Records,Course_Critical_Message', |
|
'Course_Broadcast_Message') { |
|
$help{$_}=&Apache::loncommon::help_open_topic($_); |
|
} |
} |
# ------------------------------------------------------------------------ Menu |
|
$r->print(<<END); |
|
<table cellspacing="10" cellpadding="2"> |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email/">$lt{'vam'}</a></b> |
|
</td></tr> |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?critical=display">$lt{'vcm'}</a></b> |
|
</td></tr> |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?compose=individual">$lt{'smu'}</a></b> |
|
</td></tr> |
|
END |
|
if (($ENV{'request.course.id'}) && |
|
(&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) { |
|
$r->print(<<END); |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?compose=group">$lt{'bmc'}</a></b>$help{'Course_Broadcast_Message'} |
|
</td></tr> |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?compose=upload">$lt{'dmu'}</a></b> |
|
</td></tr> |
|
<tr><td bgcolor="#FFFFAA"> |
|
<b><a href="/adm/email?recordftf=query">$lt{'unr'}</a></b>$help{'Course_Face_To_Face_Records,Course_Critical_Message'} |
|
</td></tr> |
|
|
|
END |
# ------------------------------------------------------------------------ Menu |
} |
my ($can_srm,$can_dcm,$can_dff); |
$r->print('</table>'); |
if ($env{'request.course.id'}) { |
my @msgids = sort split(/\&/,&Apache::lonnet::reply |
if ((&Apache::lonnet::allowed('srm',$env{'request.course.id'})) || |
('keys:'.$ENV{'user.domain'}.':'. |
(&Apache::lonnet::allowed('srm',$env{'request.course.id'}.'/'. |
$ENV{'user.name'}.':nohist_email', |
$env{'request.course.sec'}))) { |
$ENV{'user.home'})); |
$can_srm = 1; |
my @newmsgs; |
|
foreach (@msgids) { |
|
my ($sendtime,$shortsubj,$fromname,$fromdom,$status)= |
|
&Apache::lonmsg::unpackmsgid($_); |
|
if (defined($sendtime) && $sendtime!~/error/) { |
|
$sendtime = &Apache::lonlocal::locallocaltime($sendtime); |
|
if ($status eq 'new') { |
|
push @newmsgs, { |
|
msgid => $_, |
|
sendtime => $sendtime, |
|
shortsub => &Apache::lonnet::unescape($shortsubj), |
|
from => $fromname, |
|
fromdom => $fromdom |
|
} |
|
} |
} |
} |
if ((&Apache::lonnet::allowed('dcm',$env{'request.course.id'})) || |
} |
(&Apache::lonnet::allowed('dcm',$env{'request.course.id'}.'/'. |
if ($#newmsgs >= 0) { |
$env{'request.course.sec'}))) { |
$r->print(<<TABLEHEAD); |
$can_dcm = 1; |
<h2>$lt{'nm'}</h2> |
|
<table border=2><tr><th> </th> |
|
<th>$lt{'da'}</th><th>$lt{'us'}</th><th>$lt{'do'}</th><th>$lt{'su'}</th></tr> |
|
TABLEHEAD |
|
foreach my $msg (@newmsgs) { |
|
$r->print(<<"ENDLINK"); |
|
<tr bgcolor="#FFBB77"> |
|
<td><a href="/adm/email?display=$msg->{'msgid'}">$lt{'op'}</a></td> |
|
ENDLINK |
|
foreach ('sendtime','from','fromdom','shortsub') { |
|
$r->print("<td>$msg->{$_}</td>"); |
|
} |
|
$r->print("</td></tr>"); |
|
} |
} |
$r->print('</table></body></html>'); |
if ((&Apache::lonnet::allowed('dff',$env{'request.course.id'})) || |
} else { |
(&Apache::lonnet::allowed('dff',$env{'request.course.id'}.'/'. |
$r->print("<h3>".&mt('You have no unread messages')."</h3>"); |
$env{'request.course.sec'}))) { |
} |
$can_dff = 1; |
|
} |
|
} |
|
|
|
my @reports = ( |
|
{categorytitle => 'Send Messages', |
|
items => [ |
|
{url => '/adm/email?compose=individual', |
|
permission => 'F', |
|
icon => 'mail-message-new.png', |
|
linktext => 'New Message', |
|
linktitle => 'Send a message to users.'}, |
|
|
|
{url => '/adm/email?compose=group', |
|
permission => "$can_srm", |
|
icon => 'mail-reply-all.png', |
|
linktext => 'New Broadcast Message', |
|
help => 'Course_Broadcast_Message', |
|
linktitle => "Send a broadcast message to members of this $crstype and/or other users."}, |
|
|
|
{url => '/adm/email?compose=upload', |
|
permission => "$can_srm", |
|
icon => 'fromfile.png', |
|
linktext => 'New Messages from File', |
|
linktitle => 'Create a message from file and send to users.'}, |
|
]}, |
|
); |
|
|
|
if ($can_dff || $can_dcm ){ |
|
push(@reports,{categorytitle => 'Message Administration', |
|
items => [ |
|
{url => '/adm/email?recordftf=query', |
|
permission => "$can_dff", |
|
icon => 'messalog.png', |
|
linktext => 'Message Log for Selected Users', |
|
help => 'Course_Face_To_Face_Records,Course_Critical_Message', |
|
linktitle => "User notes, records of face-to-face discussions, critical messages, broadcast messages and archived messages in $crstype."}, |
|
|
|
{url => '/adm/setblock?caller=email', |
|
permission => "$can_dcm", |
|
icon => 'comblock.png', |
|
linktext => 'Communication Blocking', |
|
linktitle => "Blocking of $usertype communication during exams."}, |
|
]}); |
|
} |
|
$r->print(&Apache::lonhtmlcommon::generate_menu(@reports)); |
|
|
} |
} |
|
|
sub handler { |
sub handler { |
Line 137 sub handler {
|
Line 121 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 152 END
|
Line 130 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::lonmsgdisplay::disall($r); |
|
$r->print(&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|