2009-06-30 08:33:29 +00:00
|
|
|
<?php
|
2005-11-05 10:50:35 +00:00
|
|
|
|
2009-09-29 03:54:14 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2005-11-05 10:50:35 +00:00
|
|
|
|
2009-09-29 03:54:14 +00:00
|
|
|
/**
|
|
|
|
* @copyright Luis Rodrigues
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
* @package message
|
|
|
|
*/
|
2009-06-30 08:33:29 +00:00
|
|
|
|
2009-09-29 03:54:14 +00:00
|
|
|
require('../config.php');
|
|
|
|
|
|
|
|
@header('Content-Type: text/html; charset=utf-8');
|
|
|
|
|
2009-12-16 18:00:58 +00:00
|
|
|
$PAGE->set_pagelayout('popup');
|
2010-01-16 15:39:56 +00:00
|
|
|
$PAGE->set_url('/message/messages.php');
|
2009-09-29 03:54:14 +00:00
|
|
|
$PAGE->set_title(get_string('messages', 'message').' - '.format_string($SITE->fullname));
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
echo "<div id='messages'></div>";
|
|
|
|
echo $OUTPUT->footer();
|
2009-11-01 12:22:45 +00:00
|
|
|
|