LLMS_Course_Data::get_completions( string $period = 'current' )

Retrieve # of course completions within the period


Parameters Parameters

$period

(string) (Optional) Date period [current|previous]. Default is 'current'.

Default value: 'current'


Top ↑

Return Return

(int)


Top ↑

Source Source

File: includes/class.llms.course.data.php

66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
public function get_completions( $period = 'current' ) {
 
    global $wpdb;
 
    return $wpdb->get_var(
        $wpdb->prepare(
            "
        SELECT DISTINCT COUNT( user_id )
        FROM {$wpdb->prefix}lifterlms_user_postmeta
        WHERE meta_value = 'yes'
          AND meta_key = '_is_complete'
          AND post_id = %d
          AND updated_date BETWEEN %s AND %s
        ",
            $this->post_id,
            $this->get_date( $period, 'start' ),
            $this->get_date( $period, 'end' )
        )
    );// db call ok; no-cache ok.
 
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.31.0 Use $this->post_id instead of deprecated $this->course_id.
3.15.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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