function fn_settings_actions_addons_searchanise($new_status, $old_status)
{
    if (fn_se_is_registered() == true) {
        if ($new_status == 'A') {
            fn_se_signup();
            fn_se_queue_import();
        }
    }
    return true;
}
Example #2
0
function fn_searchanise_database_restore($files)
{
    if (fn_se_is_registered() == false) {
        return;
    }
    fn_set_notification('W', __('notice'), __('text_se_database_restore_notice', array('[link]' => fn_url('addons.update?addon=searchanise'))));
    return true;
}
Example #3
0
<?php

/***************************************************************************
*                                                                          *
*   (c) 2004 Vladimir V. Kalynyak, Alexey V. Vinokurov, Ilya M. Shalnev    *
*                                                                          *
* This  is  commercial  software,  only  users  who have purchased a valid *
* license  and  accept  to the terms of the  License Agreement can install *
* and use this program.                                                    *
*                                                                          *
****************************************************************************
* PLEASE READ THE FULL TEXT  OF THE SOFTWARE  LICENSE   AGREEMENT  IN  THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE.            *
****************************************************************************/
if (!defined('BOOTSTRAP')) {
    die('Access denied');
}
if ($mode == 'update' || $mode == 'install' || $mode == 'uninstall') {
    if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_REQUEST['addon'] == 'seo') {
        $show_notice = true;
    }
} elseif ($mode == 'update_status') {
    if ($_REQUEST['id'] == 'seo') {
        $show_notice = true;
    }
}
if (!empty($show_notice)) {
    if (fn_se_is_registered() == true) {
        fn_set_notification('W', __('notice'), __('text_se_seo_settings_notice', array('[link]' => fn_url('addons.update?addon=searchanise'))));
    }
}