PluginProbe
Popups – Submission Messages For Contact Form 7 / 1.2.2
Popups – Submission Messages For Contact Form 7 v1.2.2
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.2.0 1.2.1 1.2.2
cf7-popups / cf7-popups.php

cf7-popups.php in Popups – Submission Messages For Contact Form 7 1.2.2, at cf7-popups.php

30 lines 915 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Popups - Submission Messages For Contact Form 7
4 * Plugin URI: https://codeworkweb.com/plugins/cf7-popups/
5 * Description: Useful plugin to display contact form 7 error messages, success messages in beautiful popups.
6 * Version: 1.2.2
7 * Author: Code Work Web
8 * Author URI: https://codeworkweb.com/
9 * Text Domain: cf7-popups
10 * License: GPL-2.0+
11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
12 * Domain Path: /languages
13 *
14 */
15
16
17 if ( !defined( 'WPINC' ) ) {
18 die();
19 }
20
21 define( 'CF7_POPUPS_DATA', 'CF7 Popups' ); ;
22 define( 'CF7_POPUPS_VER', '1.2.2' );
23
24 define( 'CF7_POPUPS_FILE', __FILE__ );
25 define( 'CF7_POPUPS_BASENAME', plugin_basename( CF7_POPUPS_FILE ) );
26 define( 'CF7_POPUPS_PATH', plugin_dir_path( CF7_POPUPS_FILE ) );
27 define( 'CF7_POPUPS_URL', plugins_url( '/', CF7_POPUPS_FILE ) );
28
29
30 require_once CF7_POPUPS_PATH .'cf7-popups-class.php';