LLMS_Sessions::is_session_open( $start )
Determines if the given session is open (has not ended)
Parameters Parameters
-
(LLMS_Event) (Required) Event record for the start of the session.
Return Return
(bool)
Source Source
File: includes/class-llms-sessions.php
public function is_session_open( $start ) { return is_null( $this->get_session_end( $start ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.36.0 | Introduced. |