
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

defined('ABSPATH') or die('No script kittays please!');

if (!class_exists('FluentFormAddOnUpdater')) {
    // load our custom updater
    require_once(dirname(__FILE__) . '/updater/FluentFormAddOnUpdater.php');
}

if (!class_exists('FluentFormAddOnChecker')) {
    require_once(dirname(__FILE__) . '/updater/FluentFormAddOnChecker.php');
}

// Kick off our EDD class
new FluentFormAddOnChecker(array(
    // The plugin file, if this array is defined in the plugin
    'plugin_file'     => FLUENTFORMPRO_DIR_FILE,
    // The current version of the plugin.
    // Also need to change in readme.txt and plugin header.
    'version'         => FLUENTFORMPRO_VERSION,
    // The main URL of your store for license verification
    'store_url'       => 'https://api3.wpmanageninja.com/plugin',
    'store_site'      => 'https://wpmanageninja.com',
    // Your name
    'author'          => 'WP Manage Ninja',
    // The URL to renew or purchase a license
    'purchase_url'    => 'https://wpmanageninja.com/downloads/fluentform-pro-add-on/',
    // The URL of your contact page
    'contact_url'     => 'https://wpmanageninja.com/contact',
    // This should match the download name exactly
    'item_id'         => '542',
    // The option names to store the license key and activation status
    'license_key'     => '_ff_fluentform_pro_license_key',
    'license_status'  => '_ff_fluentform_pro_license_status',
    // Option group param for the settings api
    'option_group'    => '_ff_fluentform_pro_license',
    // The plugin settings admin page slug
    'admin_page_slug' => 'fluent_forms_add_ons',
    // If using add_menu_page, this is the parent slug to add a submenu item underneath.
    'activate_url'    => admin_url('admin.php?page=fluent_forms_settings&component=license_page'),
    // The translatable title of the plugin
    'plugin_title'    => 'Fluent Forms Pro Add On',
    'menu_slug'       => 'fluentformpro',
    'menu_title'      => 'Fluent Forms Pro License',
    'cache_time'      => 168 * 60 * 60 // 7 days
));

function fluentFormProActivateLicense($licenseKey)
{
    $instance = FluentFormAddOnChecker::getInstance();
    if ($instance) {
        return $instance->tryActivateLicense($licenseKey);
    }

    return false;
}

add_action('fluentform_do_email_report_scheduled_tasks', function () {
    do_action('fluent_plugins_renew_version_info_fluentformpro', true);
}, 100);
