Version Description
- New support option
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.56 |
Comparing to | |
See all releases |
Code changes from version 1.2.55 to 1.2.56
- README.txt +5 -2
- cp-main-class.inc.php +8 -1
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -454,6 +454,9 @@ When you click a field already added into the contact form builder area, you can
|
|
454 |
|
455 |
== Changelog ==
|
456 |
|
|
|
|
|
|
|
457 |
= 1.2.55 =
|
458 |
* Compatible with Gutenberg
|
459 |
|
@@ -926,5 +929,5 @@ When you click a field already added into the contact form builder area, you can
|
|
926 |
|
927 |
== Upgrade Notice ==
|
928 |
|
929 |
-
= 1.2.
|
930 |
-
*
|
454 |
|
455 |
== Changelog ==
|
456 |
|
457 |
+
= 1.2.56 =
|
458 |
+
* New support option
|
459 |
+
|
460 |
= 1.2.55 =
|
461 |
* Compatible with Gutenberg
|
462 |
|
929 |
|
930 |
== Upgrade Notice ==
|
931 |
|
932 |
+
= 1.2.56 =
|
933 |
+
* New support option
|
cp-main-class.inc.php
CHANGED
@@ -394,7 +394,9 @@ class CP_ContactFormToEmail extends CP_CFTEMAIL_BaseClass {
|
|
394 |
add_options_page($this->plugin_name.' Options', $this->plugin_name, 'manage_options', $this->menu_parameter, array($this, 'settings_page') );
|
395 |
add_menu_page( $this->plugin_name.' Options', $this->plugin_name, 'edit_pages', $this->menu_parameter, array($this, 'settings_page') );
|
396 |
add_submenu_page( $this->menu_parameter, 'Help: Online demo', 'Help: Online demo', 'read', $this->menu_parameter."_demo", array($this, 'settings_page') );
|
397 |
-
add_submenu_page( $this->menu_parameter, 'Help: Documentation', 'Help: Documentation', 'read', $this->menu_parameter."_docs", array($this, 'settings_page') );
|
|
|
|
|
398 |
add_submenu_page( $this->menu_parameter, 'Upgrade', 'Upgrade', 'edit_pages', $this->menu_parameter."_upgrade", array($this, 'settings_page') );
|
399 |
}
|
400 |
|
@@ -433,6 +435,11 @@ class CP_ContactFormToEmail extends CP_CFTEMAIL_BaseClass {
|
|
433 |
echo("Redirecting to demo page...<script type='text/javascript'>document.location='https://form2email.dwbooster.com/documentation?open=1';</script>");
|
434 |
exit;
|
435 |
}
|
|
|
|
|
|
|
|
|
|
|
436 |
else
|
437 |
@include_once dirname( __FILE__ ) . '/cp-admin-int-list.inc.php';
|
438 |
}
|
394 |
add_options_page($this->plugin_name.' Options', $this->plugin_name, 'manage_options', $this->menu_parameter, array($this, 'settings_page') );
|
395 |
add_menu_page( $this->plugin_name.' Options', $this->plugin_name, 'edit_pages', $this->menu_parameter, array($this, 'settings_page') );
|
396 |
add_submenu_page( $this->menu_parameter, 'Help: Online demo', 'Help: Online demo', 'read', $this->menu_parameter."_demo", array($this, 'settings_page') );
|
397 |
+
add_submenu_page( $this->menu_parameter, 'Help: Documentation', 'Help: Documentation', 'read', $this->menu_parameter."_docs", array($this, 'settings_page') );
|
398 |
+
add_submenu_page( $this->menu_parameter, 'Help: Free support', 'Help: Free support', 'read', $this->menu_parameter."_fsupport", array($this, 'settings_page') );
|
399 |
+
|
400 |
add_submenu_page( $this->menu_parameter, 'Upgrade', 'Upgrade', 'edit_pages', $this->menu_parameter."_upgrade", array($this, 'settings_page') );
|
401 |
}
|
402 |
|
435 |
echo("Redirecting to demo page...<script type='text/javascript'>document.location='https://form2email.dwbooster.com/documentation?open=1';</script>");
|
436 |
exit;
|
437 |
}
|
438 |
+
else if ($this->get_param("page") == $this->menu_parameter.'_fsupport')
|
439 |
+
{
|
440 |
+
echo("Redirecting to demo page...<script type='text/javascript'>document.location='https://wordpress.org/support/plugin/contact-form-to-email#new-post';</script>");
|
441 |
+
exit;
|
442 |
+
}
|
443 |
else
|
444 |
@include_once dirname( __FILE__ ) . '/cp-admin-int-list.inc.php';
|
445 |
}
|
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
|
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.56
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|