Version Description
- Renamed plugin references to avoid conflicts
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.32 |
Comparing to | |
See all releases |
Code changes from version 1.2.31 to 1.2.32
- README.txt +5 -2
- form-to-email.php +9 -9
README.txt
CHANGED
@@ -442,6 +442,9 @@ When you click a field already added into the contact form builder area, you can
|
|
442 |
|
443 |
== Changelog ==
|
444 |
|
|
|
|
|
|
|
445 |
= 1.2.31 =
|
446 |
* Admin interface improvements
|
447 |
|
@@ -845,5 +848,5 @@ When you click a field already added into the contact form builder area, you can
|
|
845 |
|
846 |
== Upgrade Notice ==
|
847 |
|
848 |
-
= 1.2.
|
849 |
-
*
|
442 |
|
443 |
== Changelog ==
|
444 |
|
445 |
+
= 1.2.32 =
|
446 |
+
* Renamed plugin references to avoid conflicts
|
447 |
+
|
448 |
= 1.2.31 =
|
449 |
* Admin interface improvements
|
450 |
|
848 |
|
849 |
== Upgrade Notice ==
|
850 |
|
851 |
+
= 1.2.32 =
|
852 |
+
* Renamed plugin references to avoid conflicts
|
form-to-email.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
-
Version: 1.2.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
@@ -56,11 +56,11 @@ define('CP_CFEMAIL_DEFAULT_cv_text_enter_valid_captcha', 'Please enter a valid c
|
|
56 |
include_once dirname( __FILE__ ) . '/classes/cp-base-class.inc.php';
|
57 |
include_once dirname( __FILE__ ) . '/cp-main-class.inc.php';
|
58 |
|
59 |
-
$
|
60 |
|
61 |
-
register_activation_hook(__FILE__, array($
|
62 |
-
add_action( 'media_buttons', array($
|
63 |
-
add_action( 'plugins_loaded', array($
|
64 |
|
65 |
function cfte_plugin_init() {
|
66 |
load_plugin_textdomain( 'contact-form-to-email', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
@@ -68,11 +68,11 @@ function cfte_plugin_init() {
|
|
68 |
add_action('plugins_loaded', 'cfte_plugin_init');
|
69 |
|
70 |
if ( is_admin() ) {
|
71 |
-
add_action('admin_enqueue_scripts', array($
|
72 |
-
add_filter("plugin_action_links_".plugin_basename(__FILE__), array($
|
73 |
-
add_action('admin_menu', array($
|
74 |
} else {
|
75 |
-
add_shortcode( $
|
76 |
}
|
77 |
|
78 |
$codepeople_promote_banner_plugins[ 'contact-form-to-email' ] = array( 'plugin_name' => 'Contact Form Email', 'plugin_url' => 'https://wordpress.org/support/plugin/contact-form-to-email/reviews/#new-post');
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
+
Version: 1.2.32
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
56 |
include_once dirname( __FILE__ ) . '/classes/cp-base-class.inc.php';
|
57 |
include_once dirname( __FILE__ ) . '/cp-main-class.inc.php';
|
58 |
|
59 |
+
$cp_cfte_plugin = new CP_ContactFormToEmail;
|
60 |
|
61 |
+
register_activation_hook(__FILE__, array($cp_cfte_plugin,'install') );
|
62 |
+
add_action( 'media_buttons', array($cp_cfte_plugin, 'insert_button'), 11);
|
63 |
+
add_action( 'plugins_loaded', array($cp_cfte_plugin, 'data_management'));
|
64 |
|
65 |
function cfte_plugin_init() {
|
66 |
load_plugin_textdomain( 'contact-form-to-email', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
68 |
add_action('plugins_loaded', 'cfte_plugin_init');
|
69 |
|
70 |
if ( is_admin() ) {
|
71 |
+
add_action('admin_enqueue_scripts', array($cp_cfte_plugin,'insert_adminScripts'), 1);
|
72 |
+
add_filter("plugin_action_links_".plugin_basename(__FILE__), array($cp_cfte_plugin,'plugin_page_links'));
|
73 |
+
add_action('admin_menu', array($cp_cfte_plugin,'admin_menu') );
|
74 |
} else {
|
75 |
+
add_shortcode( $cp_cfte_plugin->shorttag, array($cp_cfte_plugin, 'filter_content') );
|
76 |
}
|
77 |
|
78 |
$codepeople_promote_banner_plugins[ 'contact-form-to-email' ] = array( 'plugin_name' => 'Contact Form Email', 'plugin_url' => 'https://wordpress.org/support/plugin/contact-form-to-email/reviews/#new-post');
|