This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Astra_Addon_Background_Updater::is_new_install()
Is this a brand new addon install?
Description
Return
(boolean)
Source
File: classes/class-astra-addon-background-updater.php
private function is_new_install() { // Get auto saved version number. $saved_version = Astra_Addon_Update::astra_addon_stored_version(); if ( false === $saved_version ) { return true; } else { return false; } }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
2.1.3 | Introduced. |