LLMS_Notification_Controller_Course_Complete::action_callback( int $student_id = null, int $course_id = null )

Callback function called when a course is completed by a student


Parameters Parameters

$student_id

(int) (Optional) WP User ID of a LifterLMS Student

Default value: null

$course_id

(int) (Optional) WP Post ID of a LifterLMS Course

Default value: null


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/notifications/controllers/class.llms.notification.controller.course.complete.php

50
51
52
53
54
55
56
57
58
public function action_callback( $student_id = null, $course_id = null ) {
 
    $this->user_id = $student_id;
    $this->post_id = $course_id;
    $this->course  = llms_get_post( $course_id );
 
    $this->send();
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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