Version Description
- Gutemberg integration update
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.60 |
Comparing to | |
See all releases |
Code changes from version 1.2.59 to 1.2.60
- README.txt +6 -2
- form-to-email.php +1 -1
- images/cp_form.gif +0 -0
- js/block.js +5 -2
README.txt
CHANGED
@@ -454,6 +454,10 @@ When you click a field already added into the contact form builder area, you can
|
|
454 |
|
455 |
== Changelog ==
|
456 |
|
|
|
|
|
|
|
|
|
457 |
= 1.2.59 =
|
458 |
* Fixed magic quotes issue
|
459 |
|
@@ -938,5 +942,5 @@ When you click a field already added into the contact form builder area, you can
|
|
938 |
|
939 |
== Upgrade Notice ==
|
940 |
|
941 |
-
= 1.2.
|
942 |
-
*
|
454 |
|
455 |
== Changelog ==
|
456 |
|
457 |
+
|
458 |
+
= 1.2.60 =
|
459 |
+
* Gutemberg integration update
|
460 |
+
|
461 |
= 1.2.59 =
|
462 |
* Fixed magic quotes issue
|
463 |
|
942 |
|
943 |
== Upgrade Notice ==
|
944 |
|
945 |
+
= 1.2.60 =
|
946 |
+
* Gutemberg integration update
|
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.60
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
images/cp_form.gif
CHANGED
Binary file
|
js/block.js
CHANGED
@@ -5,11 +5,14 @@
|
|
5 |
category = {slug:'contact-form-to-email', title : 'Contact Form to Email'};
|
6 |
|
7 |
/* Plugin Category */
|
8 |
-
blocks.getCategories().push({slug: 'cpcfte', title: 'Contact Form to Email'})
|
|
|
|
|
|
|
9 |
|
10 |
blocks.registerBlockType( 'cpcfte/cp-contact-form-to-email-step-01', {
|
11 |
title: 'Contact Form to Email',
|
12 |
-
icon:
|
13 |
category: 'cpcfte',
|
14 |
supports: {
|
15 |
customClassName: false,
|
5 |
category = {slug:'contact-form-to-email', title : 'Contact Form to Email'};
|
6 |
|
7 |
/* Plugin Category */
|
8 |
+
blocks.getCategories().push({slug: 'cpcfte', title: 'Contact Form to Email'});
|
9 |
+
|
10 |
+
/* ICONS */
|
11 |
+
const iconCPCFTE = el('img', { width: 20, height: 20, src: "data:image/gif;base64,R0lGODlhFAAQAOYAAP//////AP8A//8AAAD//wD/AAAA/wAAAPH2+/T4/Ofw+Mne79Pk8t3q9d/r9ePu9wxrtQxstQ1stg1rtQ1stQ5ttg9ttg9uthBtthButhFuthhzuRl0uRx1uh11uh12uh52ux53ux93uyF4uyF5uyJ5uyN6vCR6vCd8vid7vSh9vSp+vi6AvzOEwTeFwjmHwz2JxECLxUCMxUSNxkSOxkWPxlOXy1SXy12czl6ezl+ezmCezmKfz2Kgz2Sh0Gai0Wai0Gei0Wej0Wij0Wum0mym02ym0nmt1nuv132w2H6x2ICx2ICy2IGz2YS02oa12oa22om424q424y53I+73Y663JG83pG83ZvC4ZrC4JzD4Z/F4qbJ5KjK5afJ5KjK5L3X68HZ7MTb7cne7uHt9uDs9evz+fL3+9Lk8eLu9uny+PD2+vj7/fP4+/b6/P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAG8ALAAAAAAUABAAAAfhgACCg4SFhl84QUNDQoxCjY+MQztUAEpkPREQEZybnhCeNA5XGjBqWJqfoJucSAk3FSQRJgtiHxSaFJ8YXQ4uESEjoBlcZS66mhEUJ2NhHbogI8qgR2Y2uJovDlnYECAlERKrVgBJmzoAYMqcESCyFLg5DkxnWk1sT2hLuLjRrDxuYkRg0aBNDQgoFDgBRUGEsAhCEAgEtQEcPBUPpkCYEIIEBCFrZqiCgC3CijRSIniwAMSNDFDJSKbSlEJNlAtQ0rRAVhLeKlAcGGwB4MUHkSJIixgxohTp0iI/qhiaSjUQADs=" } );
|
12 |
|
13 |
blocks.registerBlockType( 'cpcfte/cp-contact-form-to-email-step-01', {
|
14 |
title: 'Contact Form to Email',
|
15 |
+
icon: iconCPCFTE,
|
16 |
category: 'cpcfte',
|
17 |
supports: {
|
18 |
customClassName: false,
|