WP_User_Meta_Session_Tokens::update_session() protected WP 4.0.0
Updates a session based on its verifier (token hash).
{} It's a method of the class: WP_User_Meta_Session_Tokens{}
No Hooks.
Return
null
. Null. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->update_session( $verifier, $session );
- $verifier(string) (required)
- Verifier for the session to update.
- $session(array)
- Session. Omitting this argument destroys the session.
Changelog
Since 4.0.0 | Introduced. |
Code of WP_User_Meta_Session_Tokens::update_session() WP User Meta Session Tokens::update session WP 5.7
protected function update_session( $verifier, $session = null ) {
$sessions = $this->get_sessions();
if ( $session ) {
$sessions[ $verifier ] = $session;
} else {
unset( $sessions[ $verifier ] );
}
$this->update_sessions( $sessions );
}