Warning: This method has been deprecated. LLMS_Engagements::handle_certificate is deprecated in favor of LLMS_Engagement_Handler::handle_certificate instead.

LLMS_Engagements::handle_certificate( array $args )

Award a certificate


Parameters Parameters

$args

(array) (Required) Indexed array of arguments.

  • (int) WP_User ID.
  • '1'
    (int) WP_Post ID of the certificate template post.
  • '2'
    (int|string) WP_Post ID of the related post that triggered the award or an empty string.
  • '3'
    (int) WP_Post ID of the engagement post.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.engagements.php

	public function handle_certificate( $args ) {
		_deprecated_function( 'LLMS_Engagements::handle_certificate', '6.0.0', 'LLMS_Engagement_Handler::handle_certificate' );
		LLMS_Engagement_Handler::handle_certificate( $args );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 LLMS_Engagements::handle_certificate is deprecated in favor of LLMS_Engagement_Handler::handle_certificate.
2.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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