PluginProbe ʕ •ᴥ•ʔ
Grid & Styler For Contact Form 7 And Divi / 1.6.1
Grid & Styler For Contact Form 7 And Divi v1.6.1
trunk 1.0.2 1.1.0 1.2.0 1.2.1 1.2.2 1.3.0 1.4.1 1.4.2 1.5.2 1.6.0 1.6.1 1.7.0 1.7.1 2.1.0 2.1.1
cf7-grid-and-styler-for-divi / cf7-grid-and-styler-for-divi.php
cf7-grid-and-styler-for-divi Last commit date
freemius 1 year ago includes 1 year ago js 1 year ago languages 1 year ago resources 1 year ago scripts 1 year ago styles 1 year ago vendor 1 year ago cf7-grid-and-styler-for-divi.php 1 year ago freemius.php 1 year ago readme.txt 1 year ago
cf7-grid-and-styler-for-divi.php
34 lines
1 <?php
2 /**
3 * Plugin Name: Grid & Styler For Contact Form 7 And Divi
4 * Description: Grid Builder & Divi Styler for Contact Form 7
5 * Author: WP Tools
6 * Author URI: https://wptools.app
7 * Text Domain: cf7-grid-and-styler-for-divi
8 * Domain Path: /languages
9 * Version: 1.6.1
10 */
11
12 if ( !function_exists( 'wpt_cf7_divi_initialize_extension' ) ):
13 function wpt_cf7_divi_initialize_extension()
14 {
15 require_once plugin_dir_path( __FILE__ ) . 'includes/WptCf7Divi.php';
16 }
17
18 add_action( 'divi_extensions_init', 'wpt_cf7_divi_initialize_extension' );
19 endif;
20
21 require_once __DIR__ . '/freemius.php';
22 require_once __DIR__ . '/vendor/autoload.php';
23
24 $loader = \WPT\Cf7Divi\Loader::getInstance();
25
26 $loader['plugin_name'] = 'Contact Form 7 Grid And Styler For Divi';
27 $loader['plugin_version'] = '1.6.1';
28 $loader['plugin_dir'] = __DIR__;
29 $loader['plugin_url'] = plugins_url( '/' . basename( __DIR__ ) );
30 $loader['plugin_file'] = __FILE__;
31 $loader['plugin_slug'] = 'cf7-grid-and-styler-for-divi';
32
33 $loader->run();
34