LLMS_Abstract_User_Engagement::is_awarded()
Determines if the achievement or certificate has been awarded.
Contents
Return Return
(boolean)
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' ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |