silverstripe-framework/core/Cookie.php
Andrew O'Neil 4c81b8c3a5 BUGFIX #2714 - Cookie::set doesn't operate correctly with expiryDays 0 (wakeless)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@66196 467b73ca-7a2a-4603-9d3b-597d59a354a9
2011-02-02 14:26:34 +13:00

38 lines
1.0 KiB
PHP
Executable File

<?php
/**
* A set of static methods for manipulating cookies.
* @package sapphire
* @subpackage misc
*/
class Cookie extends Object {
/**
* Set a cookie variable
* @param name The variable name
* @param value The variable value. May be an array or object if you wish.
* @param expiryDays The expiry time, in days. Defaults to 90.
*/
static function set($name, $value, $expiryDays = 90) {
if(!headers_sent($file, $line)) {
$expiry = $expiryDays > 0 ? time()+(86400*$expiryDays) : 0;
setcookie($name, $value, $expiry, Director::baseURL());
$_COOKIE[$name] = $value;
} else {
if(Director::isDev()) user_error("Cookie '$name' can't be set. The site started outputting was content at line $line in $file", E_USER_WARNING);
}
}
/**
* Get a cookie variable
*/
static function get($name) {
return isset($_COOKIE[$name]) ? $_COOKIE[$name] : null;
}
static function forceExpiry( $name ) {
if(!headers_sent($file, $line)) {
setcookie( $name, null, time() - 86400 );
}
}
}
?>