Warning: This method has been deprecated. LLMS_Certificate_User::trigger() is deprecated with no replacement instead.
Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Certificate_User::trigger( int $user_id, int $email_id, int $lesson_id )
Award the cert to a user.
Parameters Parameters
- $user_id
-
(int) (Required) ID of the user receiving the certificate.
- $email_id
-
(int) (Required) ID of the certificate.
- $lesson_id
-
(int) (Required) ID of the associated lesson.
Return Return
(void)
Source Source
File: includes/certificates/class.llms.certificate.user.php
private function trigger( $user_id, $email_id, $lesson_id ) { $this->init( $email_id, $user_id, $lesson_id ); // Only award cert if the user hasn't already earned it. if ( $this->has_user_earned() ) { return; } if ( $user_id ) { $this->object = new WP_User( $user_id ); $this->user_email = stripslashes( $this->object->user_email ); $this->recipient = $this->user_email; } if ( ! $this->is_enabled() ) { return; } $this->create( $this->get_content() ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |