LLMS_Order::maybe_schedule_expiration()

Schedule access expiration


Return Return

(void)


Top ↑

Source Source

File: includes/models/model.llms.order.php

1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
*                                                      will be passed.
 * @param array|LLMS_Student|WP_User|integer $user_data User data.
 */
do_action(
    'lifterlms_new_pending_order',
    $this,
    is_array( $user_data ) ? new LLMS_Student( null, false ) : llms_get_student( $user_data ),
    $user_data
);
 
return $this;


Top ↑

Changelog Changelog

Changelog
Version Description
3.32.0 Update to use latest action-scheduler functions.
3.19.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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