Browse Source

added cookie option to session configuration.

Taylor Otwell 13 years ago
parent
commit
ca2c988274
3 changed files with 13 additions and 9 deletions
  1. 11 0
      application/config/session.php
  2. 1 1
      laravel/laravel.php
  3. 1 8
      laravel/session/payload.php

+ 11 - 0
application/config/session.php

@@ -69,6 +69,17 @@ return array(
 
 	'expire_on_close' => false,
 
+	/*
+	|--------------------------------------------------------------------------
+	| Session Cookie Name
+	|--------------------------------------------------------------------------
+	|
+	| The name that should be given to the session cookie.
+	|
+	*/
+
+	'cookie' => 'laravel_session',
+
 	/*
 	|--------------------------------------------------------------------------
 	| Session Cookie Path

+ 1 - 1
laravel/laravel.php

@@ -31,7 +31,7 @@ if (Config::$items['session']['driver'] !== '')
 
 	$driver = IoC::container()->core('session.'.Config::$items['session']['driver']);
 
-	if ( ! is_null($id = Cookie::get(Session\Payload::cookie)))
+	if ( ! is_null($id = Cookie::get(Config::$items['session']['cookie'])))
 	{
 		$payload = new Session\Payload($driver->load($id));
 	}

+ 1 - 8
laravel/session/payload.php

@@ -22,13 +22,6 @@ class Payload {
 	 */
 	protected $exists = true;
 
-	/**
-	 * The name of the session cookie used to store the session ID.
-	 *
-	 * @var string
-	 */
-	const cookie = 'laravel_session';
-
 	/**
 	 * Create a new session payload instance.
 	 *
@@ -256,7 +249,7 @@ class Payload {
 
 		$minutes = ( ! $config['expire_on_close']) ? $config['lifetime'] : 0;
 		
-		Cookie::put(Payload::cookie, $this->id, $minutes, $config['path'], $config['domain'], $config['secure']);	
+		Cookie::put($cookie, $this->id, $minutes, $config['path'], $config['domain'], $config['secure']);	
 	}
 
 	/**