Server : LiteSpeed System : Linux in-mum-web1949.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 User : u595547767 ( 595547767) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/u595547767/domains/resolvemv.com/public_html/wp-content/plugins/bit-form/ |
<?php
/**
* Plugin Name: Bit Form
* Plugin URI: https://www.bitapps.pro/bit-form
* Description: Contact Form Builder Plugin: Multi Step Contact Form, Payment Form, Custom Contact Form Plugin by Bit Form
* Version: 2.21.8
* Author: Contact Form Builder - Bit Form
* Author URI: https://www.bitapps.pro
* Text Domain: bit-form
* Requires PHP: 7.4
* Domain Path: /languages
* License: GPLv2 or later
*/
/***
* If try to direct access plugin folder it will Exit
**/
if (!defined('ABSPATH')) {
exit;
}
// Define most essential constants.
define('BITFORMS_VERSION', '2.21.8');
define('BITFORMS_PLUGIN_MAIN_FILE', __FILE__);
global $bitforms_db_version;
$bitforms_db_version = '2.4';
define('BITFORMS_DB_VERSION', $bitforms_db_version);
define('BITFORMS_REQUIRED_WP_VERSION', '5.1');
define('BITFORMS_REQUIRED_PHP_VERSION', '7.4');
define('BITFORMS_API_VERSION', '1.0');
if (version_compare(PHP_VERSION, '5.6.0', '>=')) {
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';
}
/**
* Handles plugin activation.
*
* Throws an error if the plugin is activated on an older version than PHP 5.6.
*/
function bitforms_activate_plugin($network_wide)
{
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
wp_die(
'Bit Form requires PHP version 5.6 or higher.',
'Error Activating'
);
}
do_action('bitforms_activation', $network_wide);
}
register_activation_hook(__FILE__, 'bitforms_activate_plugin');
/**
* Handles plugin deactivation.
*/
function bitforms_deactivate_plugin($network_wide)
{
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
return;
}
do_action('bitforms_deactivation', $network_wide);
}
register_deactivation_hook(__FILE__, 'bitforms_deactivate_plugin');
/**
* Handles plugin uninstall.
*
* @access private
*/
function bitforms_uninstall_plugin()
{
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
return;
}
do_action('bitforms_uninstall');
}
register_uninstall_hook(__FILE__, 'bitforms_uninstall_plugin');