LLMS_Add_On::get_install_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
public function get_install_status( $translate = false ) {
if ( ! $this->is_installable() ) {
$ret = 'none';
} else {
$ret = $this->is_installed() ? 'installed' : 'uninstalled';
}
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. |