Changeset 3468450
- Timestamp:
- 02/24/2026 09:38:03 AM (6 weeks ago)
- Location:
- authyo-otp-for-met-form/trunk
- Files:
-
- 5 added
- 2 edited
-
assets/css/deactivation.css (added)
-
assets/css/email-subscription.css (added)
-
assets/js/deactivation.js (added)
-
assets/js/email-subscription.js (added)
-
authyo-otp-for-met-form.php (modified) (5 diffs)
-
includes/class-authyo-deactivation.php (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
authyo-otp-for-met-form/trunk/authyo-otp-for-met-form.php
r3466376 r3468450 4 4 * Plugin URI: https://authyo.io 5 5 * Description: Integrates Authyo OTP Verification (Email, SMS, WhatsApp, Voice) into MetForm forms. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Authyo 8 8 * Text Domain: authyo-otp-for-met-form … … 16 16 } 17 17 18 define( 'AUTHYO_OTP_MF_VERSION', '1.0. 1' );18 define( 'AUTHYO_OTP_MF_VERSION', '1.0.2' ); 19 19 define( 'AUTHYO_OTP_MF_PATH', plugin_dir_path( __FILE__ ) ); 20 20 define( 'AUTHYO_OTP_MF_URL', plugin_dir_url( __FILE__ ) ); … … 48 48 require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-widgets.php'; 49 49 require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-entries.php'; 50 require_once AUTHYO_OTP_MF_PATH . 'includes/class-authyo-deactivation.php'; 50 51 } 51 52 … … 56 57 new Authyo_OTP_MF_Widgets(); 57 58 new Authyo_OTP_MF_Entries(); 59 new Authyo_OTP_MF_Deactivation(); 58 60 } 61 59 62 60 63 public function metform_missing_notice() { … … 75 78 $api = new Authyo_OTP_MF_API(); 76 79 $api->refresh_country_list(); 80 81 // Set flag for email subscription popup 82 set_transient('authyo_mf_show_email_subscription', true, HOUR_IN_SECONDS); 77 83 } 84 -
authyo-otp-for-met-form/trunk/readme.txt
r3466376 r3468450 4 4 Requires at least: 5.6 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 53 53 == Changelog == 54 54 55 = 1.0.2 = 56 * Performance improvements. 57 55 58 = 1.0.1 = 56 59 * New Feature: MetForm form entry management.
Note: See TracChangeset
for help on using the changeset viewer.