Changeset 932 for trunk/system/libraries/Session.php
- Timestamp:
- 11/01/2007 03:14:45 AM (13 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Session.php (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Session.php
r931 r932 28 28 /* 29 29 * Method: __construct 30 * On first session instance creation, sets up the driver and creates session 30 * On first session instance creation, sets up the driver and creates session. 31 31 */ 32 32 public function __construct() … … 88 88 /* 89 89 * Method: id 90 * Get the session id 90 * Get the session id. 91 91 * 92 92 * Returns: … … 100 100 /* 101 101 * Method: create 102 * Create a new session 102 * Create a new session. 103 103 */ 104 104 public function create($vars = NULL) … … 189 189 /* 190 190 * Method: regenerate 191 * Regenerates the global session id 191 * Regenerates the global session id. 192 192 */ 193 193 public function regenerate() … … 202 202 /* 203 203 * Method: destroy 204 * Destroys the current session 204 * Destroys the current session. 205 205 * 206 206 * Returns: … … 221 221 /* 222 222 * Method: set 223 * Set a session variable 223 * Set a session variable. 224 224 * 225 225 * Parameters: … … 248 248 /* 249 249 * Method: set_flash 250 * Set a flash variable 250 * Set a flash variable. 251 251 * 252 252 * Parameters: … … 276 276 /* 277 277 * Method: keep_flash 278 * Freshen a flash variable 278 * Freshen a flash variable. 279 279 * 280 280 * Parameters: … … 294 294 /* 295 295 * Method: get 296 * Get a variable 296 * Get a variable. 297 297 * 298 298 * Parameters: … … 313 313 /* 314 314 * Method: get_once 315 * Get a variable, and delete it 315 * Get a variable, and delete it. 316 316 * 317 317 * Parameters: … … 331 331 /* 332 332 * Method: del 333 * Delete a variable 333 * Delete a variable. 334 334 * 335 335 * Parameters:
