LLMS_Sessions::end_idle_sessions()

End the 50 oldest idle sessions.


Return Return

(void)


Top ↑

Source Source

File: includes/class-llms-sessions.php

87
88
89
90
91
92
93
94
95
public function end_idle_sessions() {
 
    foreach ( $this->get_open_sessions() as $i => $event ) {
        if ( $this->is_session_idle( $event ) ) {
            $this->end( $event );
        }
    }
 
}


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.