1 session.inc _backdrop_session_open()

Session handler assigned by session_set_save_handler().

This function is used to handle any initialization, such as file paths or database connections, that is needed before accessing session data. Backdrop does not need to initialize anything in this function.

This function should not be called directly.

Return value

This function will always return TRUE.:

File

core/includes/session.inc, line 32
User session handling functions.

Code

function _backdrop_session_open() {
  return TRUE;
}