aboutsummaryrefslogtreecommitdiff
path: root/mod/beechat/actions/get_state.php
blob: 6cfd2f72506218f8de667432a1bbb83d8477560a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
	/**
	 * Beechat
	 * 
	 * @package beechat
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Beechannels <contact@beechannels.com>
	 * @copyright Beechannels 2007-2010
	 * @link http://beechannels.com/
	 */
	 
	header('Content-type: application/json');
	gatekeeper();
	
	global $SESSION;
	
	if ($SESSION->offsetExists('beechat_state'))
	  echo $SESSION->offsetGet('beechat_state');
	
	exit();
?>