From d6c817be8dfb9d41ea3f19cecd90619cde97209d Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 11 Feb 2016 22:43:34 +0100 Subject: opensearch support --- src/phinde/Helper.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src') diff --git a/src/phinde/Helper.php b/src/phinde/Helper.php index 312c5e5..43345ba 100644 --- a/src/phinde/Helper.php +++ b/src/phinde/Helper.php @@ -41,5 +41,23 @@ class Helper ) ); } + + /** + * Create a full URL with protocol and host name + * + * @param string $path Path to the file, with leading / + * + * @return string Full URL + */ + public static function fullUrl($path = '/') + { + if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']) { + $prot = 'https'; + } else { + $prot = 'http'; + } + return $prot . '://' . $_SERVER['HTTP_HOST'] . $path; + } + } ?> -- cgit v1.2.3