Oppaitime's version of Gazelle
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.

g.class.php 256B

12345678910111213
  1. <?
  2. class G {
  3. public static $DB;
  4. public static $Cache;
  5. public static $LoggedUser;
  6. public static function initialize() {
  7. global $DB, $Cache, $LoggedUser;
  8. self::$DB = $DB;
  9. self::$Cache = $Cache;
  10. self::$LoggedUser =& $LoggedUser;
  11. }
  12. }