LLMS_User_Certificate::delete()

Delete the certificate


Return Return

(void)


Top ↑

Source Source

File: includes/models/model.llms.user.certificate.php

	protected $model_post_type = 'certificate';

	/**
	 * Object properties
	 *
	 * @var array
	 */
	protected $properties = array(
		'allow_sharing' => 'string',
		'awarded'       => 'string',
		'background'    => 'string',
		'engagement'    => 'absint',
		'height'        => 'float',
		'margins'       => 'array',
		'orientation'   => 'string',
		'related'       => 'absint',
		'sequential_id' => 'absint',
		'size'          => 'string',
		'unit'          => 'string',
		'width'         => 'float',
	);

	/**
	 * Array of default property values.
	 *
	 * In the form of key => default value.
	 *
	 * @var array
	 */
	protected $property_defaults = array(
		'background'    => '#ffffff',
		'orientation'   => 'landscape',
		'margins'       => array( 5, 5, 5, 5 ),
		'sequential_id' => 1,

Top ↑

Changelog Changelog

Changelog
Version Description
3.18.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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