LLMS_Add_On::get_license_status( bool $translate = false )
Determine the status of an addon’s license
Parameters Parameters
- $translate
-
(bool) (Optional) If
true
, returns the translated string for on-screen display.Default value: false
Return Return
(string)
Source Source
File: includes/models/model.llms.add-on.php
243 244 245 246 247 248 249 250 251 252 253 | public function get_license_status( $translate = false ) { if ( ! llms_parse_bool( $this ->get( 'has_license' ) ) ) { $ret = 'none' ; } else { $ret = $this ->is_licensed() ? 'license_active' : 'license_inactive' ; } return $translate ? $this ->get_l10n( $ret ) : $ret ; } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.22.0 | Introduced. |