| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: JetFormBuilder |
| 4 |
* Plugin URI: https://jetformbuilder.com/ |
| 5 |
* Description: Advanced form builder plugin for WordPress block editor. Create forms from the ground up, customize the existing ones, and style them up – all in one editor. |
| 6 |
* Version: 3.6.5.3 |
| 7 |
* Author: Crocoblock |
| 8 |
* Author URI: https://crocoblock.com/ |
| 9 |
* Text Domain: jet-form-builder |
| 10 |
* License: GPL-3.0+ |
| 11 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt |
| 12 |
* Domain Path: /languages |
| 13 |
* Requires at least: 6.1 |
| 14 |
*/ |
| 15 |
|
| 16 |
// If this file is called directly, abort. |
| 17 |
if ( ! defined( 'WPINC' ) ) { |
| 18 |
die(); |
| 19 |
} |
| 20 |
|
| 21 |
const JET_FORM_BUILDER_VERSION = '3.6.5.3'; |
| 22 |
|
| 23 |
const JET_FORM_BUILDER__FILE__ = __FILE__; |
| 24 |
const JET_FORM_BUILDER_SITE = 'https://jetformbuilder.com'; |
| 25 |
|
| 26 |
define( 'JET_FORM_BUILDER_PLUGIN_BASE', plugin_basename( JET_FORM_BUILDER__FILE__ ) ); |
| 27 |
define( 'JET_FORM_BUILDER_PATH', plugin_dir_path( JET_FORM_BUILDER__FILE__ ) ); |
| 28 |
define( 'JET_FORM_BUILDER_URL', plugins_url( '/', JET_FORM_BUILDER__FILE__ ) ); |
| 29 |
|
| 30 |
require __DIR__ . '/load.php'; |
| 31 |
|