Example #1
0
 public static function getInstance()
 {
     if (self::$instance == NULL) {
         self::$instance = new AdminURL();
     }
     return self::$instance;
 }
Example #2
0
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }