LLMS_User_Certificate::get_user_postmeta()
Retrieve user postmeta data for the certificate
Contents
Return Return
(obj)
Source Source
File: includes/models/model.llms.user.certificate.php
* @return bool */ public function can_user_manage( $user_id = null ) { $user_id = $user_id ? $user_id : get_current_user_id(); $result = ( $user_id && ( $user_id === $this->get_user_id() || llms_can_user_bypass_restrictions( $user_id ) ) ); /** * Filter whether or not a user can manage a given certificate.
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |