LLMS_Student::get_events( array $args = array() )
Retrieve postmeta events related to the student
Parameters Parameters
- $args
-
(array) (Optional) default args, see LLMS_Query_User_Postmeta
Default value: array()
Return Return
(array)
Source Source
File: includes/models/model.llms.student.php
* @param int $product_id WP Post ID of the course or membership * @return int|false * @since 3.0.0 * @version 3.17.2 */ public function get_enrollment_trigger_id( $product_id ) { $trigger = $this->get_enrollment_trigger( $product_id ); $id = false; if ( $trigger && false !== strpos( $trigger, 'order_' ) ) { $trigger_obj = $this->get_enrollment_order( $product_id ); if ( $trigger_obj instanceof LLMS_Order ) { $id = $trigger_obj->get( 'id' ); } elseif ( $trigger_obj instanceof WP_Post ) { $id = $trigger_obj->ID; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.15.0 | Introduced. |