Example #1
0
 public static function set_name_base($base)
 {
     self::$base = $base;
 }
Example #2
0
 protected function setBase()
 {
     if (!isset(Config::$base)) {
         $path = str_replace("index.php", "", $_SERVER["PHP_SELF"]);
         Config::$base = "http" . (isset($_SERVER["HTTPS"]) ? "s" : "") . "://" . $_SERVER["HTTP_HOST"] . $path;
     }
 }