opensearch support
[phinde.git] / src / phinde / Helper.php
index 312c5e54a35ba4790c15842ca349504f241468ac..43345ba22899c890966c5a659bda068b0daebbe6 100644 (file)
@@ -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;
+    }
+
 }
 ?>