|
@@ -20,14 +20,29 @@ class URL {
|
|
|
{
|
|
|
if (filter_var($url, FILTER_VALIDATE_URL) !== false) return $url;
|
|
|
|
|
|
+ return rtrim(static::root($https), '/').'/'.ltrim($url, '/');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Get the URL to the root of the application.
|
|
|
+ *
|
|
|
+ * @param bool $https
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ protected static function root($https = false)
|
|
|
+ {
|
|
|
$base = Config::$items['application']['url'].'/'.Config::$items['application']['index'];
|
|
|
|
|
|
+ // It is possible for the developer to totally disable the generation of links
|
|
|
+ // that use HTTPS. This is primarily to create a convenient test environment
|
|
|
+ // when using SSL is not an option. We will only replace the first occurence
|
|
|
+ // of "http" with "https" since URLs are sometimes passed in query strings.
|
|
|
if ($https and Config::$items['application']['ssl'])
|
|
|
{
|
|
|
$base = preg_replace('~http://~', 'https://', $base, 1);
|
|
|
}
|
|
|
|
|
|
- return rtrim($base, '/').'/'.ltrim($url, '/');
|
|
|
+ return $base;
|
|
|
}
|
|
|
|
|
|
/**
|