Annotation of loncom/interface/loncommunicate.pm, revision 1.28

1.1       www         1: # The LearningOnline Network
                      2: # Communicate
                      3: #
1.28    ! albertel    4: # $Id: loncommunicate.pm,v 1.27 2005/02/17 08:29:42 albertel Exp $
1.7       albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.20      www        28: ###
                     29: 
1.1       www        30: package Apache::loncommunicate;
                     31: 
                     32: use strict;
                     33: use Apache::Constants qw(:common);
1.2       www        34: use Apache::lonmsg();
1.11      www        35: use Apache::loncommon;
1.16      www        36: use Apache::lonlocal;
1.28    ! albertel   37: use Apache::lonnet;
1.1       www        38: 
1.21      www        39: sub menu {
                     40:     my $r=shift;
                     41:     my %lt=&Apache::lonlocal::texthash(
1.23      www        42: 'mnf' => 'Make New Folder',
1.16      www        43: 'vcm' => 'View Critical Messages',
                     44: 'smu' => 'Send Message to User(s)',
                     45: 'bmc' => 'Broadcast Message to Course',
                     46: 'dmu' => 'Distribute Messages from Uploaded File to Course',
                     47: 'unr' => 
                     48:      'User Notes, Records of Face-to-Face Discussions, and Critical Messages',
1.24      www        49: 
1.22      raeburn    50: 'cbs' => 'Configure blocking of student communication during exams' 
                     51: 
1.16      www        52: );
1.18      www        53:     my %help=();
                     54:     foreach ('Course_Face_To_Face_Records,Course_Critical_Message',
                     55: 	     'Course_Broadcast_Message') {
                     56: 	$help{$_}=&Apache::loncommon::help_open_topic($_);
                     57:     }
1.20      www        58: # ------------------------------------------------------------------------ Menu
1.9       matthew    59:    $r->print(<<END);
1.26      www        60: <table cellspacing="10" cellpadding="2">
                     61: <tr><td bgcolor="#FFFFAA"><form method="post" action="/adm/email">
1.23      www        62: <input type="submit" value="$lt{'mnf'}" />
                     63: <input type="text" size="15" name="newfolder" value="" />
1.26      www        64: </form></td>
                     65: <td bgcolor="#FFFFAA">
1.16      www        66:   <b><a href="/adm/email?compose=individual">$lt{'smu'}</a></b>
1.9       matthew    67: </td></tr>
                     68: END
1.28    ! albertel   69:     if (($env{'request.course.id'}) && 
        !            70:         (&Apache::lonnet::allowed('srm',$env{'request.course.id'}))) {
1.9       matthew    71:         $r->print(<<END);
                     72: <tr><td bgcolor="#FFFFAA">
1.18      www        73:     <b><a href="/adm/email?compose=group">$lt{'bmc'}</a></b>$help{'Course_Broadcast_Message'}
1.26      www        74: </td>
                     75: <td bgcolor="#FFFFAA">
1.16      www        76:   <b><a href="/adm/email?compose=upload">$lt{'dmu'}</a></b>
1.9       matthew    77: </td></tr>
1.13      www        78: <tr><td bgcolor="#FFFFAA">
1.18      www        79: <b><a href="/adm/email?recordftf=query">$lt{'unr'}</a></b>$help{'Course_Face_To_Face_Records,Course_Critical_Message'}
1.26      www        80: </td>
                     81: <td bgcolor="#FFFFAA">
1.22      raeburn    82:   <b><a href="/adm/email?block=display">$lt{'cbs'}</a>
                     83: </td></tr>
1.9       matthew    84: END
1.4       www        85:     }
1.9       matthew    86:     $r->print('</table>');
1.21      www        87: }
                     88: 
                     89: sub handler {
                     90:     my $r = shift;
                     91:     &Apache::loncommon::content_type($r,'text/html');
                     92:     $r->send_http_header;
                     93:     return OK if $r->header_only;
                     94: #
                     95: # Start document
                     96: #
1.27      albertel   97:     my $html=&Apache::lonxml::xmlbegin();
1.21      www        98:     $r->print(<<END);
1.27      albertel   99: $html
1.21      www       100: <head>
                    101: <title>The LearningOnline Network with CAPA</title>
                    102: </head>
                    103: END
                    104: 
                    105: # ----------------------------------------------------------------- Breadcrumbs
                    106:     &Apache::lonhtmlcommon::clear_breadcrumbs();
                    107:     &Apache::lonhtmlcommon::add_breadcrumb
                    108:         ({href=>"/adm/communicate",
                    109:           text=>"Communication/Messages",
                    110:           faq=>12,bug=>'Communication Tools',});
                    111: 
                    112: # ---------------------------------------------------------------------- Header
                    113:     &Apache::lonmsg::header($r);
                    114:     &menu($r);
1.25      www       115:     &Apache::lonmsg::disall($r,'new');
1.1       www       116:     return OK;
1.2       www       117: }
1.1       www       118: 
                    119: 1;
                    120: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>