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 290B

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