/**
  * Get the only permitted instance of this object.  It will be created if necessary
  *
  * @return object
  */
 public static function &get_instance()
 {
     if (!isset(self::$_instance)) {
         $c = __CLASS__;
         self::$_instance = new $c();
     }
     return self::$_instance;
 }