llms_mark_incomplete( int $user_id, int $object_id, int $object_type, string $trigger = 'unspecified' )
Mark a lesson, section, course, or track as incomplete
Contents
Description Description
See also See also
- LLMS_Student->mark_incomplete()
Parameters Parameters
- $user_id
-
(int) (Required) WP User ID.
- $object_id
-
(int) (Required) WP Post ID of the Lesson, Section, Track, or Course.
- $object_type
-
(int) (Required) Object type [lesson|section|course|track].
- $trigger
-
(string) (Optional) String describing the event that triggered marking the object as incomplete.
Default value: 'unspecified'
Return Return
(boolean)
Source Source
File: includes/functions/llms.functions.person.php
* * @param int $user_id WP User ID. * @param int $object_id WP Post ID of the Lesson, Section, Track, or Course. * @param string $object_type Object type [lesson|section|course|track].
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |