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


Top ↑

Return Return

(string)


Top ↑

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 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
6.0.0 Migrated from LLMS_User_Certificate and LLMS_User_Achievement.
3.14.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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