Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/webrooms/checksession.php

24 lines
608 B

<?php
/*
* Created on 08.11.2006
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
include("../main/inc/global.inc.php");
api_block_anonymous_users();
printf ('<?xml version="1.0" encoding="UTF-8" ?>');
printf('<dokeosobject>');
printf('<courseobject>');
foreach ($_SESSION['_course'] as $key => $val) printf('<%s>%s</%s>',$key,$val,$key);
printf('</courseobject>');
printf('<userobject>');
foreach ($_SESSION['_user'] as $key => $val) printf('<%s>%s</%s>',$key,$val,$key);
printf('</userobject>');
printf('</dokeosobject>');
?>