Version Description
csv, xml export mark on map
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.14 |
Comparing to | |
See all releases |
Code changes from version 1.7.13 to 1.7.14
- admin/models/FMModelGenerete_csv.php +1 -1
- admin/models/FMModelGenerete_xml.php +1 -1
- admin/views/FMViewManage_fm.php +10 -15
- form-maker.php +2 -2
- readme.txt +21 -10
admin/models/FMModelGenerete_csv.php
CHANGED
@@ -133,7 +133,7 @@ class FMModelGenerete_csv {
|
|
133 |
}
|
134 |
}
|
135 |
elseif (strpos($t->element_value, "***map***")) {
|
136 |
-
$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' .
|
137 |
}
|
138 |
elseif (strpos($t->element_value, "***star_rating***")) {
|
139 |
$element = str_replace("***star_rating***", '', $t->element_value);
|
133 |
}
|
134 |
}
|
135 |
elseif (strpos($t->element_value, "***map***")) {
|
136 |
+
$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' . str_replace("***map***", ', Latitude:', $t->element_value);
|
137 |
}
|
138 |
elseif (strpos($t->element_value, "***star_rating***")) {
|
139 |
$element = str_replace("***star_rating***", '', $t->element_value);
|
admin/models/FMModelGenerete_xml.php
CHANGED
@@ -132,7 +132,7 @@ class FMModelGenerete_xml {
|
|
132 |
}
|
133 |
}
|
134 |
elseif (strpos($t->element_value, "***map***")) {
|
135 |
-
$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' .
|
136 |
}
|
137 |
elseif (strpos($t->element_value,"***star_rating***")) {
|
138 |
$element = str_replace("***star_rating***", '', $t->element_value);
|
132 |
}
|
133 |
}
|
134 |
elseif (strpos($t->element_value, "***map***")) {
|
135 |
+
$data_temp[stripslashes($label_titles[$h])] = 'Longitude:' . str_replace("***map***", ', Latitude:', $t->element_value);
|
136 |
}
|
137 |
elseif (strpos($t->element_value,"***star_rating***")) {
|
138 |
$element = str_replace("***star_rating***", '', $t->element_value);
|
admin/views/FMViewManage_fm.php
CHANGED
@@ -250,26 +250,21 @@ class FMViewManage_fm {
|
|
250 |
if (wdtype == "type_address") {
|
251 |
addr_id = parseInt(wdid);
|
252 |
id_for_country = addr_id;
|
253 |
-
if (document.getElementById(id_for_country + "_mini_label_street1"))
|
254 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street1").innerHTML + '#**label**#type_address#****#';
|
255 |
-
|
256 |
-
|
257 |
-
if (document.getElementById(id_for_country + "_mini_label_street2")) {
|
258 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street2").innerHTML + '#**label**#type_address#****#';
|
259 |
-
|
260 |
-
|
261 |
-
if (document.getElementById(id_for_country+"_mini_label_city")) {
|
262 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_city").innerHTML + '#**label**#type_address#****#';
|
263 |
-
|
264 |
-
|
265 |
-
if (document.getElementById(id_for_country + "_mini_label_state")) {
|
266 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_state").innerHTML + '#**label**#type_address#****#';
|
267 |
-
|
268 |
-
|
269 |
-
if (document.getElementById(id_for_country + "_mini_label_postal")) {
|
270 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_postal").innerHTML + '#**label**#type_address#****#';
|
271 |
-
|
272 |
-
}
|
273 |
if (document.getElementById(id_for_country+"_mini_label_country")) {
|
274 |
tox=tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_country").innerHTML + '#**label**#type_address#****#';
|
275 |
}
|
250 |
if (wdtype == "type_address") {
|
251 |
addr_id = parseInt(wdid);
|
252 |
id_for_country = addr_id;
|
253 |
+
if (document.getElementById(id_for_country + "_mini_label_street1"))
|
254 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street1").innerHTML + '#**label**#type_address#****#';
|
255 |
+
addr_id++;
|
256 |
+
if (document.getElementById(id_for_country + "_mini_label_street2"))
|
|
|
257 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_street2").innerHTML + '#**label**#type_address#****#';
|
258 |
+
addr_id++;
|
259 |
+
if (document.getElementById(id_for_country+"_mini_label_city"))
|
|
|
260 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_city").innerHTML + '#**label**#type_address#****#';
|
261 |
+
addr_id++;
|
262 |
+
if (document.getElementById(id_for_country + "_mini_label_state"))
|
|
|
263 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_state").innerHTML + '#**label**#type_address#****#';
|
264 |
+
addr_id++;
|
265 |
+
if (document.getElementById(id_for_country + "_mini_label_postal"))
|
|
|
266 |
tox = tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_postal").innerHTML + '#**label**#type_address#****#';
|
267 |
+
addr_id++;
|
|
|
268 |
if (document.getElementById(id_for_country+"_mini_label_country")) {
|
269 |
tox=tox + addr_id + '#**id**#' + document.getElementById(id_for_country + "_mini_label_country").innerHTML + '#**label**#type_address#****#';
|
270 |
}
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
-
* Version: 1.7.
|
7 |
* Author: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
@@ -162,7 +162,7 @@ if (class_exists('WP_Widget')) {
|
|
162 |
// Activate plugin.
|
163 |
function form_maker_activate() {
|
164 |
$version = get_option("wd_form_maker_version");
|
165 |
-
$new_version = '1.7.
|
166 |
if (!$version) {
|
167 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
168 |
global $wpdb;
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: http://web-dorado.com/products/form-maker-wordpress.html
|
5 |
* Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
|
6 |
+
* Version: 1.7.14
|
7 |
* Author: http://web-dorado.com/
|
8 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
162 |
// Activate plugin.
|
163 |
function form_maker_activate() {
|
164 |
$version = get_option("wd_form_maker_version");
|
165 |
+
$new_version = '1.7.14';
|
166 |
if (!$version) {
|
167 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
168 |
global $wpdb;
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Form Maker ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: http://web-dorado.com/products/wordpress-form.html
|
4 |
-
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form,
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -213,6 +213,21 @@ In case you are upgrading your Form Maker to paid version, but still want to pre
|
|
213 |
|
214 |
== Changelog ==
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
= 1.7.9 =
|
217 |
line break in custom text in email
|
218 |
|
@@ -433,19 +448,15 @@ Custom: This field can be used for inserting custom buttons into the form. Type
|
|
433 |
|
434 |
To insert a form into a Page or a Post.
|
435 |
|
|
|
436 |
|
437 |
-
|
438 |
-
5.1. Press the button named Insert Form Maker in a post or a page you want to show the form.
|
439 |
-
|
440 |
-
5.2. Select a form from the list.
|
441 |
|
|
|
442 |
|
|
|
443 |
|
444 |
-
5.3. Save the page or the post.
|
445 |
|
446 |
-
Alternatively, you can use form builder without the button on the toolbar: Add the shortcode [Form id="N"] (where N is the id of the form, for the form with id=2, the shortcode must be [Form id="2"]) to the pages and posts, where you want the form to appear.
|
447 |
-
|
448 |
-
|
449 |
= Step 6: Managing submissions of the form. =
|
450 |
|
451 |
6.1 On the left menu select Form Maker > Submissions
|
1 |
=== Form Maker ===
|
2 |
Contributors: webdorado
|
3 |
Donate link: http://web-dorado.com/products/wordpress-form.html
|
4 |
+
Tags: form, forms, form builder, form maker, form manager, form plugin, form with recaptcha, forms plugin, multiple forms, paypal form, survey form, feedback form, feedback forms, contact form,contact form plugin, contact form builder, form creator, email form, secure form, web form, form to email, contact forms, custom forms, form widget, captcha form, wordpress contact form ,recaptcha contact form, form creation, contact form with auto reply, widget contact form, builder, feedback, contacts form plugin , custom contact form, contact us form, formular, formulario
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 1.7.14
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
213 |
|
214 |
== Changelog ==
|
215 |
|
216 |
+
= 1.7.14 =
|
217 |
+
csv, xml export mark on map
|
218 |
+
|
219 |
+
= 1.7.13 =
|
220 |
+
sql mapping
|
221 |
+
|
222 |
+
= 1.7.12 =
|
223 |
+
extended name edit bug fixed (if first input is empty)
|
224 |
+
|
225 |
+
= 1.7.11 =
|
226 |
+
hidden field edit bug fixed
|
227 |
+
|
228 |
+
= 1.7.10 =
|
229 |
+
security issue fixed
|
230 |
+
|
231 |
= 1.7.9 =
|
232 |
line break in custom text in email
|
233 |
|
448 |
|
449 |
To insert a form into a Page or a Post.
|
450 |
|
451 |
+
5.1. Press the button named Insert Form Maker in a post or a page you want to show the form.
|
452 |
|
453 |
+
5.2. Select a form from the list.
|
|
|
|
|
|
|
454 |
|
455 |
+
5.3. Save the page or the post.
|
456 |
|
457 |
+
Alternatively, you can use form builder without the button on the toolbar. Add the shortcode [Form id="N"] (where N is the id of the form, for the form with id=2, the shortcode must be [Form id="2"]) to the pages and posts, where you want the form to appear. For each form you can find the relevant shortcode from Manager view, it is stored on the right corner of the form title.
|
458 |
|
|
|
459 |
|
|
|
|
|
|
|
460 |
= Step 6: Managing submissions of the form. =
|
461 |
|
462 |
6.1 On the left menu select Form Maker > Submissions
|