Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Privacy_Exporters::get_certificate_data( obj $cert )
Get data for a certificate
Description Description
Parameters Parameters
- $cert
-
(obj) (Required) LLMS_User_Certificate
Return Return
(array)
Source Source
File: includes/privacy/class-llms-privacy-exporters.php
private static function get_certificate_data( $cert ) { $data = array(); $title = $cert->get( 'certificate_title' ); $filename = LLMS()->certificates()->get_export( $cert->get( 'id' ), true ); if ( ! is_wp_error( $filename ) ) { $title = '<a href="certificates/' . basename( $filename ) . '">' . $title . '</a>'; } $data[] = array( 'name' => __( 'Title', 'lifterlms' ), 'value' => $title, ); $data[] = array( 'name' => __( 'Earned Date', 'lifterlms' ), 'value' => $cert->get_earned_date( 'Y-m-d H:i:s' ), ); return $data; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: