LLMS_Abstract_User_Engagement::get_earned_date( string $format = null )
Retrieve the date the achievement was earned (created)
Parameters Parameters
- $format
-
(string) (Optional) Date format string.
Default value: null
Return Return
(string)
Source Source
File: includes/abstracts/llms-abstract-user-engagement.php
public function get_earned_date( $format = null ) { $format = $format ? $format : get_option( 'date_format' ); return $this->get_date( 'date', $format ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Migrated from LLMS_User_Certificate and LLMS_User_Achievement. |
3.14.0 | Introduced. |