| 7 session.inc | drupal_save_session($status = NULL) |
| 8 session.inc | drupal_save_session($status = NULL) |
Determines whether to save session data of the current request.
This function allows the caller to temporarily disable writing of session data, should the request end while performing potentially dangerous operations, such as manipulating the global $user object. See http://drupal.org/node/218104 for usage.
Parameters
$status: Disables writing of session data when FALSE, (re-)enables writing when TRUE.
Return value
FALSE if writing session data has been disabled. Otherwise, TRUE.
14 calls to drupal_save_session()
File
- includes/
session.inc, line 509 - User session handling functions.
Code
function drupal_save_session($status = NULL) {
$save_session = &drupal_static(__FUNCTION__, TRUE);
if (isset($status)) {
$save_session = $status;
}
return $save_session;
}
Login or register to post comments