// Add getShopProtocol to have the current protocol use by the current shop

This commit is contained in:
vSchoener
2011-12-06 14:22:03 +00:00
parent 961ec7606d
commit b82babc08b
+14
View File
@@ -132,6 +132,20 @@ class ToolsCore
exit;
}
/**
* getShopProtocol return the available protocol for the current shop in use
* SSL if Configuration is set on and available for the server
* @static
* @return String
*/
public static function getShopProtocol()
{
$id_shop = Context::getContext()->shop()->id;
$protocol = (Configuration::get('PS_SSL_ENABLED', null, null, $id_shop) || (!empty($_SERVER['HTTPS'])
&& strtolower($_SERVER['HTTPS']) != 'off')) ? 'https://' : 'http://';
return $protocol;
}
/**
* getProtocol return the set protocol according to configuration (http[s])
* @param Boolean true if require ssl