LLMS_Add_On::is_active()
Determine if an installable addon is active
Return Return
(bool)
Source Source
File: includes/models/model.llms.add-on.php
}
return $img;
}
/**
* Determine if there is an available update for the add-on
*
* @since 3.22.0
*
* @return bool
*/
public function has_available_update() {
return version_compare( $this->get_installed_version(), $this->get_latest_version(), '<' );
}
/**
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.22.0 | Introduced. |