summaryrefslogtreecommitdiffstats
path: root/classes/g.class.php
blob: 67718e7762b81d90742890b1b510369ce04c2e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?
class G {
	public static $DB;
	public static $Cache;
	public static $LoggedUser;

	public static function initialize() {
		global $DB, $Cache, $LoggedUser;
		self::$DB = $DB;
		self::$Cache = $Cache;
		self::$LoggedUser =& $LoggedUser;
	}
}