function sgPopupDeactivate()
{
    delete_option('SG_POPUP_VERSION');
    PopupInstaller::uninstall();
    if (SG_POPUP_PRO) {
        PopupProInstaller::uninstall();
    }
}
Ejemplo n.º 2
0
function sgPopupPluginLoaded()
{
    $versionPopup = get_option('SG_POPUP_VERSION');
    if (!$versionPopup || $versionPopup < SG_POPUP_VERSION) {
        update_option('SG_POPUP_VERSION', SG_POPUP_VERSION);
        PopupInstaller::install();
    }
}