PluginProbe ʕ •ᴥ•ʔ
SureForms – Drag & Drop Contact Form & Form Builder, Payment Form, Survey, Quiz & Calculator / 2.12.0
SureForms – Drag & Drop Contact Form & Form Builder, Payment Form, Survey, Quiz & Calculator v2.12.0
2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 0.0.4 0.0.5 0.0.6 0.0.7 0.0.8 0.0.9 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.1.2 1.10.0 1.10.1 1.11.0 1.12.0 1.12.1 1.12.2 1.12.3 1.13.0 1.13.1 1.13.2 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.8.0 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.0 2.5.2 2.6.0
sureforms / sureforms.php
sureforms Last commit date
admin 1 week ago assets 1 week ago images 2 weeks ago inc 1 week ago languages 1 week ago modules 1 week ago templates 1 week ago plugin-loader.php 1 week ago readme.txt 1 week ago sureforms.php 1 week ago wpml-config.xml 3 weeks ago
sureforms.php
43 lines
1 <?php
2 /**
3 * Plugin Name: SureForms
4 * Plugin URI: https://sureforms.com
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
8 * Author: SureForms
9 * Author URI: https://sureforms.com/
10 * Version: 2.12.0
11 * License: GPLv2 or later
12 * Text Domain: sureforms
13 *
14 * @package sureforms
15 */
16
17 if ( ! defined( 'ABSPATH' ) ) {
18 exit; // Exit if accessed directly.
19 }
20
21 /**
22 * Set constants
23 */
24 define( 'SRFM_FILE', __FILE__ );
25 define( 'SRFM_BASENAME', plugin_basename( SRFM_FILE ) );
26 define( 'SRFM_DIR', plugin_dir_path( SRFM_FILE ) );
27 define( 'SRFM_URL', plugins_url( '/', SRFM_FILE ) );
28 define( 'SRFM_VER', '2.12.0' );
29 define( 'SRFM_SLUG', 'srfm' );
30 // ------ ADDITIONAL CONSTANTS ------- //
31 define( 'SRFM_FORMS_POST_TYPE', 'sureforms_form' );
32 define( 'SRFM_ENTRIES', 'sureforms_entries' );
33 define( 'SRFM_PAYMENTS', 'sureforms_payments' );
34 define( 'SRFM_WEBSITE', 'https://sureforms.com/' );
35 define( 'SRFM_AI_MIDDLEWARE', 'https://credits.startertemplates.com/sureforms/' );
36 define( 'SRFM_MIDDLEWARE_BASE_URL', 'https://api.sureforms.com/' );
37 define( 'SRFM_BILLING_PORTAL', 'https://billing.sureforms.com/' );
38 define( 'SRFM_PRO_RECOMMENDED_VER', '2.12.0' );
39
40 define( 'SRFM_SURETRIGGERS_INTEGRATION_BASE_URL', 'https://app.ottokit.com/' );
41
42 require_once 'plugin-loader.php';
43