mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
34 lines
612 B
PHP
34 lines
612 B
PHP
<?php // $Id$
|
|
|
|
require_once($CFG->libdir.'/pagelib.php');
|
|
|
|
define('PAGE_CHAT_VIEW', 'mod-chat-view');
|
|
|
|
page_map_class(PAGE_CHAT_VIEW, 'page_chat');
|
|
|
|
$DEFINEDPAGES = array(PAGE_CHAT_VIEW);
|
|
|
|
/**
|
|
* Class that models the behavior of a chat
|
|
*
|
|
* @author Jon Papaioannou
|
|
* @package pages
|
|
*/
|
|
|
|
class page_chat extends page_generic_activity {
|
|
|
|
function init_quick($data) {
|
|
if(empty($data->pageid)) {
|
|
print_error('invalidcourseid');
|
|
}
|
|
$this->activityname = 'chat';
|
|
parent::init_quick($data);
|
|
}
|
|
|
|
function get_type() {
|
|
return PAGE_CHAT_VIEW;
|
|
}
|
|
}
|
|
|
|
?>
|