* transmitted over a secure HTTPS connection.
* @param boolean $bHttpOnly Disallow JS to access the cookie (IE6 only)
* @param boolean $bReplace Replace previous cookies with same name?
+ * @param string $sSameSite Optional override of the default SameSite
+ * cookie policy detemined from the global
+ * configuration item $same_site_cookies
+ * (which can be set in config/config_local.php)
+ * (should be NULL to accept the configured global
+ * default or one of "Lax" "Strict" or "None"
+ * but "None" will not work if $bSecure is FALSE.
+ * Can also be set set to an empty string in order
+ * to NOT specify the SameSite cookie attribute at
+ * all and accept whatever the browser default is)
*
* @return void
*
*
*/
function sqsetcookie($sName, $sValue='deleted', $iExpire=0, $sPath="", $sDomain="",
- $bSecure=false, $bHttpOnly=true, $bReplace=false) {
+ $bSecure=false, $bHttpOnly=true, $bReplace=false, $sSameSite=NULL) {
// some environments can get overwhelmed by an excessive
// setting of the same cookie over and over (e.g., many
if (!$only_secure_cookies)
$bSecure = false;
+ // use global SameSite setting, but allow override
+ // The global $same_site_cookies (for which an override value
+ // can be specified in config/config_local.php) defaults to
+ // "Strict" when it is NULL (when not given in the config file),
+ // or can be manually set to "Lax" "Strict" or "None" if desired
+ // or can be set to an empty string in order to not specify
+ // SameSite at all and use the browser default
+ if (is_null($sSameSite)) {
+ global $same_site_cookies;
+ if (is_null($same_site_cookies))
+ $sSameSite = 'Strict';
+ else
+ $sSameSite = $same_site_cookies;
+ }
+
if (false && check_php_version(5,2)) {
// php 5 supports the httponly attribute in setcookie, but because setcookie seems a bit
// broken we use the header function for php 5.2 as well. We might change that later.
. (empty($sPath) ? '' : '; path=' . $sPath)
. (empty($sDomain) ? '' : '; domain=' . $sDomain)
. (!$bSecure ? '' : '; secure')
- . (!$bHttpOnly ? '' : '; HttpOnly'), $bReplace);
+ . (!$bHttpOnly ? '' : '; HttpOnly')
+ . (empty($sSameSite) ? '' : '; SameSite=' . $sSameSite), $bReplace);
}
}