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.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/class-llms-sessions.php

	public function is_session_open( $start ) {

		return is_null( $this->get_session_end( $start ) );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.36.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.