LLMS_Sessions::get_new_id( int $user_id = null )

Retrieve a new session ID.


Parameters Parameters

$user_id

(int) (Optional) WP_User ID of a student. Default null If not provided, or a falsy is provided, will fall back on the current user id.

Default value: null


Top ↑

Return Return

(int)


Top ↑

Source Source

File: includes/class-llms-sessions.php

401
402
403
404
405
406
407
408
409
410
411
412
protected function get_new_id( $user_id = null ) {
 
    $user_id = $user_id ? $user_id : get_current_user_id();
 
    $last = $this->get_last_session( $user_id );
    if ( ! $last ) {
        return 1;
    }
 
    return ++$last->object_id;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
4.5.0 Added optional $user_id parameter.
3.36.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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