mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00

I have cleaned up the message Javascript code, implementing the new PAGE methods and at the same time implemented the new OUTPUT methods
13 lines
No EOL
326 B
PHP
13 lines
No EOL
326 B
PHP
<?php
|
|
|
|
require('../config.php');
|
|
|
|
@header('Content-Type: text/html; charset=utf-8');
|
|
|
|
$PAGE->set_generaltype('popup');
|
|
$PAGE->set_title(get_string('messages', 'message').' - '.format_string($SITE->fullname));
|
|
echo $OUTPUT->header();
|
|
echo "<div id='messages'></div>";
|
|
echo $OUTPUT->footer();
|
|
|
|
?>
|