PluginProbe
Form Vibes – Save Contact Form 7 & Elementor Form Entries to Database / trunk
Form Vibes – Save Contact Form 7 & Elementor Form Entries to Database vtrunk
1.1.2 1.1.3 1.1.4 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 All 42 releases
form-vibes / form-vibes.php

form-vibes.php in Form Vibes – Save Contact Form 7 & Elementor Form Entries to Database trunk, at form-vibes.php

48 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Form Vibes
5 * Plugin URI: https://formvibes.com
6 * Description: Lead Management and Graphical Reports for Elementor Pro, Contact Form 7 & Caldera form submissions.
7 * Author: WPVibes
8 * Version: 1.5.2
9 * Author URI: https://wpvibes.com/
10 * Text Domain: wpv-fv
11 * License: GPLv2
12 * Domain Path: /languages
13 * Requires at least: 5.0
14 * Requires PHP: 7.4
15 * @fs_premium_only inc/pro, assets/css/pro, assets/script/pro, assets/dist/pro
16 */
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit; // Exit if accessed directly
20 }
21
22 if ( ! defined( 'WPV_FV__PATH' ) ) {
23 define( 'WPV_FV__VERSION', '1.5.2' );
24 // recommended pro version for free
25 // define( 'WPV_FV__PRO_RECOMMENDED_VERSION', '0.5' );
26 define( 'WPV_FV__URL', plugins_url( '/', __FILE__ ) );
27 define( 'WPV_FV__PATH', plugin_dir_path( __FILE__ ) );
28 define( 'WPV_FV_PLUGIN_BASE', plugin_basename( __FILE__ ) );
29
30 if ( ! defined( 'WPV_PRO_FV_VERSION' ) ) {
31 // maintain
32 define( 'WPV_PRO_FV_VERSION', '1.5.1' );
33 define( 'WPV_FV_MIN_VERSION', '1.3.6' );
34 }
35 }
36
37
38
39 // Load the plugin text domain for translations.
40 add_action( 'init', function () {
41 load_plugin_textdomain( 'wpv-fv', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
42 } );
43
44 add_action('plugins_loaded', function(){
45 require_once WPV_FV__PATH . '/vendor/autoload.php';
46 require_once WPV_FV__PATH . '/inc/bootstrap.php';
47 FormVibes\Classes\DbTables::fv_plugin_activated();
48 });