LLMS_User_Certificate::delete()
Delete the certificate
Contents
Return Return
(void)
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,
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.0 | Introduced. |