PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 1.0.2
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v1.0.2
2.12.6 2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 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 All 96 releases
sureforms / sureforms.php
sureforms.php
38 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 * Author: SureForms
7 * Author URI: https://sureforms.com/
8 * Version: 1.0.2
9 * License: GPLv2 or later
10 * Text Domain: sureforms
11 *
12 * @package sureforms
13 */
14
15 if ( ! defined( 'ABSPATH' ) ) {
16 exit; // Exit if accessed directly.
17 }
18
19 /**
20 * Set constants
21 */
22 define( 'SRFM_FILE', __FILE__ );
23 define( 'SRFM_BASENAME', plugin_basename( SRFM_FILE ) );
24 define( 'SRFM_DIR', plugin_dir_path( SRFM_FILE ) );
25 define( 'SRFM_URL', plugins_url( '/', SRFM_FILE ) );
26 define( 'SRFM_VER', '1.0.2' );
27 define( 'SRFM_SLUG', 'srfm' );
28 // ------ ADDITIONAL CONSTANTS ------- //
29 define( 'SRFM_FORMS_POST_TYPE', 'sureforms_form' );
30 define( 'SRFM_ENTRIES', 'sureforms_entries' );
31 define( 'SRFM_WEBSITE', 'https://sureforms.com/' );
32 define( 'SRFM_AI_MIDDLEWARE', 'https://credits.startertemplates.com/sureforms/' );
33 define( 'SRFM_BILLING_PORTAL', 'https://billing.sureforms.com/' );
34
35 define( 'SRFM_SURETRIGGERS_INTEGRATION_BASE_URL', 'https://app.suretriggers.com/' );
36
37 require_once 'plugin-loader.php';
38