LLMS_Abstract_User_Engagement::is_awarded()

Determines if the achievement or certificate has been awarded.


Return Return

(boolean)


Top ↑

Source Source

File: includes/abstracts/llms-abstract-user-engagement.php

	public function is_awarded() {

		if ( 'publish' !== $this->get( 'status' ) ) {
			return false;
		}

		return (bool) $this->get( 'awarded' );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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