| @@ -1,13 +1,15 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: SureForms |
| 4 | - * Plugin URI: https://www.brainstormforce.com | |
| 4 | + * Plugin URI: https://sureforms.com | |
| 5 | 5 | * Description: A simple yet powerful way to create modern forms for your website. |
| 6 | + * Requires at least: 6.4 | |
| 7 | + * Requires PHP: 7.4 | |
| 6 | 8 | * Author: SureForms |
| 7 | - * Author URI: https://brainstormforce.com/ | |
| 8 | - * Version: 0.0.1 | |
| 9 | - * License: GPL v2 | |
| 9 | + * Author URI: https://sureforms.com/ | |
| 10 | + * Version: 1.7.3 | |
| 11 | + * License: GPLv2 or later | |
| 10 | 12 | * Text Domain: sureforms |
| 11 | 13 | * |
| 12 | 14 | * @package sureforms |
| 13 | 15 | */ |
| @@ -22,11 +24,17 @@ | ||
| 22 | 24 | define( 'SRFM_FILE', __FILE__ ); |
| 23 | 25 | define( 'SRFM_BASENAME', plugin_basename( SRFM_FILE ) ); |
| 24 | 26 | define( 'SRFM_DIR', plugin_dir_path( SRFM_FILE ) ); |
| 25 | 27 | define( 'SRFM_URL', plugins_url( '/', SRFM_FILE ) ); |
| 26 | -define( 'SRFM_VER', '0.0.1' ); | |
| 28 | +define( 'SRFM_VER', '1.7.3' ); | |
| 27 | 29 | define( 'SRFM_SLUG', 'srfm' ); |
| 28 | 30 | // ------ ADDITIONAL CONSTANTS ------- // |
| 29 | 31 | define( 'SRFM_FORMS_POST_TYPE', 'sureforms_form' ); |
| 30 | -define( 'SRFM_ENTRIES_POST_TYPE', 'sureforms_entry' ); | |
| 32 | +define( 'SRFM_ENTRIES', 'sureforms_entries' ); | |
| 33 | +define( 'SRFM_WEBSITE', 'https://sureforms.com/' ); | |
| 34 | +define( 'SRFM_AI_MIDDLEWARE', 'https://credits.startertemplates.com/sureforms/' ); | |
| 35 | +define( 'SRFM_BILLING_PORTAL', 'https://billing.sureforms.com/' ); | |
| 36 | +define( 'SRFM_PRO_RECOMMENDED_VER', '1.7.3' ); | |
| 31 | 37 | |
| 32 | -require_once 'srfm-plugin-loader.php'; | |
| 38 | +define( 'SRFM_SURETRIGGERS_INTEGRATION_BASE_URL', 'https://app.ottokit.com/' ); | |
| 39 | + | |
| 40 | +require_once 'plugin-loader.php'; | |