Plugin Directory

Changeset 3468450


Ignore:
Timestamp:
02/24/2026 09:38:03 AM (6 weeks ago)
Author:
konceptwise
Message:

Performance improvement

Location:
authyo-otp-for-met-form/trunk
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • authyo-otp-for-met-form/trunk/authyo-otp-for-met-form.php

    r3466376 r3468450  
    44 * Plugin URI: https://authyo.io
    55 * Description: Integrates Authyo OTP Verification (Email, SMS, WhatsApp, Voice) into MetForm forms.
    6  * Version: 1.0.1
     6 * Version: 1.0.2
    77 * Author: Authyo
    88 * Text Domain: authyo-otp-for-met-form
     
    1616}
    1717
    18 define( 'AUTHYO_OTP_MF_VERSION', '1.0.1' );
     18define( 'AUTHYO_OTP_MF_VERSION', '1.0.2' );
    1919define( 'AUTHYO_OTP_MF_PATH', plugin_dir_path( __FILE__ ) );
    2020define( 'AUTHYO_OTP_MF_URL', plugin_dir_url( __FILE__ ) );
     
    4848        require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-widgets.php';
    4949        require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-entries.php';
     50        require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-deactivation.php';
    5051    }
    5152
     
    5657        new Authyo_OTP_MF_Widgets();
    5758        new Authyo_OTP_MF_Entries();
     59        new Authyo_OTP_MF_Deactivation();
    5860    }
     61
    5962
    6063    public function metform_missing_notice() {
     
    7578    $api = new Authyo_OTP_MF_API();
    7679    $api->refresh_country_list();
     80
     81    // Set flag for email subscription popup
     82    set_transient('authyo_mf_show_email_subscription', true, HOUR_IN_SECONDS);
    7783}
     84
  • authyo-otp-for-met-form/trunk/readme.txt

    r3466376 r3468450  
    44Requires at least: 5.6
    55Tested up to: 6.9
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    5353== Changelog ==
    5454
     55= 1.0.2 =
     56* Performance improvements.
     57
    5558= 1.0.1 =
    5659* New Feature: MetForm form entry management.
Note: See TracChangeset for help on using the changeset viewer.