Version Description
Changed: Licensing/Donation page Chenged: Notices
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.7.76 |
Comparing to | |
See all releases |
Code changes from version 1.7.74 to 1.7.76
- admin/views/FMViewLicensing_fm.php +36 -2
- admin/views/FMViewSubmissions_fm.php +2 -2
- css/license.css +159 -0
- css/notices.css +1 -1
- featured/featured.php +10 -0
- featured/images/faq_wd.png +0 -0
- featured/style.css +1 -0
- form-maker.php +2 -2
- images/FormCreatorLogo.png +0 -0
- images/arrow3.png +0 -0
- images/lic_minus.png +0 -0
- images/lic_plus.png +0 -0
- readme.txt +9 -1
admin/views/FMViewLicensing_fm.php
CHANGED
@@ -23,10 +23,44 @@ class FMViewLicensing_fm {
|
|
23 |
// Public Methods //
|
24 |
////////////////////////////////////////////////////////////////////////////////////////
|
25 |
public function display() {
|
|
|
|
|
26 |
?>
|
27 |
<div style="width:99%">
|
28 |
-
<
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
<a href="https://web-dorado.com/files/fromFormMaker.php" class="button-primary" target="_blank">Purchase a License</a>
|
31 |
<br/><br/>
|
32 |
<p>After purchasing the commercial version follow these steps:</p>
|
23 |
// Public Methods //
|
24 |
////////////////////////////////////////////////////////////////////////////////////////
|
25 |
public function display() {
|
26 |
+
wp_register_style('fm_license', WD_FM_URL . '/css/license.css', array(), get_option("wd_form_maker_version"));
|
27 |
+
wp_print_styles('fm_license');
|
28 |
?>
|
29 |
<div style="width:99%">
|
30 |
+
<div id="featurs_tables">
|
31 |
+
<div id="featurs_table1">
|
32 |
+
<span>Unlimited Fields</span>
|
33 |
+
<span>File Upload Field</span>
|
34 |
+
<span>Google Map</span>
|
35 |
+
<span>PayPal Integration</span>
|
36 |
+
<span>Front-End Submissions</span>
|
37 |
+
<span>Add-ons support</span>
|
38 |
+
</div>
|
39 |
+
<div id="featurs_table2">
|
40 |
+
<span>Free</span>
|
41 |
+
<span class="no"></span>
|
42 |
+
<span class="no"></span>
|
43 |
+
<span class="no"></span>
|
44 |
+
<span class="no"></span>
|
45 |
+
<span class="no"></span>
|
46 |
+
<span class="no"></span>
|
47 |
+
</div>
|
48 |
+
<div id="featurs_table3">
|
49 |
+
<span>Pro Version</span>
|
50 |
+
<span class="yes"></span>
|
51 |
+
<span class="yes"></span>
|
52 |
+
<span class="yes"></span>
|
53 |
+
<span class="yes"></span>
|
54 |
+
<span class="yes"></span>
|
55 |
+
<span class="yes"></span>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
<div style="float: right; text-align: right;">
|
59 |
+
<a style="text-decoration: none;" target="_blank" href="https://web-dorado.com/files/fromFormMaker.php">
|
60 |
+
<img width="215" border="0" alt="web-dorado.com" src="<?php echo WD_FM_URL . '/images/wd_logo.png'; ?>" />
|
61 |
+
</a>
|
62 |
+
</div>
|
63 |
+
<div style="float: left; clear: both;">
|
64 |
<a href="https://web-dorado.com/files/fromFormMaker.php" class="button-primary" target="_blank">Purchase a License</a>
|
65 |
<br/><br/>
|
66 |
<p>After purchasing the commercial version follow these steps:</p>
|
admin/views/FMViewSubmissions_fm.php
CHANGED
@@ -35,8 +35,8 @@ class FMViewSubmissions_fm {
|
|
35 |
$rows = ((isset($labels_parameters[5])) ? $labels_parameters[5] : NULL);
|
36 |
$group_ids = ((isset($labels_parameters[6])) ? $labels_parameters[6] : NULL);
|
37 |
$where_choices = $labels_parameters[7];
|
38 |
-
|
39 |
-
$asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == '
|
40 |
$style_id = $this->model->hide_or_not($lists['hide_label_list'], '@submitid@');
|
41 |
$style_date = $this->model->hide_or_not($lists['hide_label_list'], '@submitdate@');
|
42 |
$style_ip = $this->model->hide_or_not($lists['hide_label_list'], '@submitterip@');
|
35 |
$rows = ((isset($labels_parameters[5])) ? $labels_parameters[5] : NULL);
|
36 |
$group_ids = ((isset($labels_parameters[6])) ? $labels_parameters[6] : NULL);
|
37 |
$where_choices = $labels_parameters[7];
|
38 |
+
$order_by = (isset($_POST['order_by']) ? esc_html(stripslashes($_POST['order_by'])) : 'group_id');
|
39 |
+
$asc_or_desc = ((isset($_POST['asc_or_desc']) && $_POST['asc_or_desc'] == 'asc') ? 'asc' : 'desc');
|
40 |
$style_id = $this->model->hide_or_not($lists['hide_label_list'], '@submitid@');
|
41 |
$style_date = $this->model->hide_or_not($lists['hide_label_list'], '@submitdate@');
|
42 |
$style_ip = $this->model->hide_or_not($lists['hide_label_list'], '@submitterip@');
|
css/license.css
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
div#featurs_tables {
|
2 |
+
display: inline-block;
|
3 |
+
font-size: 13px;
|
4 |
+
padding-top: 95px;
|
5 |
+
text-align: left;
|
6 |
+
float: left;
|
7 |
+
}
|
8 |
+
|
9 |
+
div#featurs_tables div {
|
10 |
+
vertical-align: top;
|
11 |
+
}
|
12 |
+
|
13 |
+
div#featurs_table1 {
|
14 |
+
background-color: rgb(254, 254, 254);
|
15 |
+
display: inline-block;
|
16 |
+
position: relative;
|
17 |
+
vertical-align: top;
|
18 |
+
width: 330px;
|
19 |
+
height: 228px;
|
20 |
+
z-index: 10;
|
21 |
+
}
|
22 |
+
|
23 |
+
div#featurs_table1 span::after {
|
24 |
+
background-image: url("../images/arrow3.png");
|
25 |
+
background-position: center center;
|
26 |
+
background-repeat: no-repeat;
|
27 |
+
content: "";
|
28 |
+
display: inline-block;
|
29 |
+
float: right;
|
30 |
+
height: 37px;
|
31 |
+
position: relative;
|
32 |
+
right: -21px;
|
33 |
+
top: -8px;
|
34 |
+
width: 26px;
|
35 |
+
}
|
36 |
+
|
37 |
+
div#featurs_table1 span {
|
38 |
+
border-left: 1px solid #e5e5e5;
|
39 |
+
border-right: 1px solid #e5e5e5;
|
40 |
+
border-top: 1px solid #e5e5e5;
|
41 |
+
color: #545454;
|
42 |
+
display: block;
|
43 |
+
height: 21px;
|
44 |
+
padding: 8px;
|
45 |
+
text-align: left;
|
46 |
+
}
|
47 |
+
|
48 |
+
div#featurs_table1 span:last-child,
|
49 |
+
div#featurs_table2 span:last-child,
|
50 |
+
div#featurs_table3 span:last-child {
|
51 |
+
border-bottom: 1px solid #e5e5e5;
|
52 |
+
}
|
53 |
+
|
54 |
+
div#featurs_table2 {
|
55 |
+
background-color: rgba(255, 255, 255, 0.9);
|
56 |
+
display: inline-block;
|
57 |
+
position: relative;
|
58 |
+
top: -72px;
|
59 |
+
width: 180px;
|
60 |
+
}
|
61 |
+
|
62 |
+
div#featurs_table2 span:first-child,
|
63 |
+
div#featurs_table3 span:first-child {
|
64 |
+
color: #000;
|
65 |
+
font-size: 22px;
|
66 |
+
font-weight: bold;
|
67 |
+
padding-bottom: 14px;
|
68 |
+
padding-top: 2px;
|
69 |
+
border-top: 1px solid #e5e5e5;
|
70 |
+
border-left: 1px solid #e5e5e5;
|
71 |
+
border-right: 1px solid #e5e5e5;
|
72 |
+
height: 39px;
|
73 |
+
padding-top: 18px;
|
74 |
+
}
|
75 |
+
|
76 |
+
div#featurs_table2 span:first-child {
|
77 |
+
border-left: 1px solid #e5e5e5 !important;
|
78 |
+
}
|
79 |
+
|
80 |
+
div#featurs_table2 span {
|
81 |
+
border-left: none !important;
|
82 |
+
}
|
83 |
+
|
84 |
+
div#featurs_table2 span,
|
85 |
+
div#featurs_table3 span {
|
86 |
+
border-top: 1px solid #e5e5e5;
|
87 |
+
border-right: 1px solid #e5e5e5;
|
88 |
+
border-left: 1px solid #e5e5e5;
|
89 |
+
color: #545454;
|
90 |
+
display: block;
|
91 |
+
height: 21px;
|
92 |
+
padding: 8px;
|
93 |
+
text-align: center;
|
94 |
+
}
|
95 |
+
|
96 |
+
.download a {
|
97 |
+
background-color: #fff;
|
98 |
+
border: 6px solid #dddddd;
|
99 |
+
border-radius: 50%;
|
100 |
+
box-shadow: 0 0 0 7px #eeeeee;
|
101 |
+
color: #21439c;
|
102 |
+
cursor: pointer;
|
103 |
+
display: inline-block;
|
104 |
+
font-size: 14px;
|
105 |
+
font-style: italic;
|
106 |
+
font-weight: bold;
|
107 |
+
margin-top: -4px;
|
108 |
+
outline: 0 none;
|
109 |
+
padding: 32px 9px 32px 2px;
|
110 |
+
text-align: center;
|
111 |
+
text-decoration: none;
|
112 |
+
transition-duration: 0.6s;
|
113 |
+
transition-property: border-color;
|
114 |
+
transition-timing-function: linear;
|
115 |
+
width: 72px;
|
116 |
+
}
|
117 |
+
|
118 |
+
div#featurs_table3 {
|
119 |
+
background-color: rgba(255, 255, 255, 0.6);
|
120 |
+
display: inline-block;
|
121 |
+
position: relative;
|
122 |
+
top: -72px;
|
123 |
+
width: 180px;
|
124 |
+
}
|
125 |
+
|
126 |
+
div#featurs_table2 span.yes,
|
127 |
+
div#featurs_table3 span.yes {
|
128 |
+
background-image: url("../images/lic_plus.png");
|
129 |
+
background-position: center center;
|
130 |
+
background-repeat: no-repeat;
|
131 |
+
}
|
132 |
+
|
133 |
+
span.no {
|
134 |
+
background-image: url("../images/lic_minus.png");
|
135 |
+
background-position: center center;
|
136 |
+
background-repeat: no-repeat;
|
137 |
+
}
|
138 |
+
|
139 |
+
.download input[type="submit"]:hover,
|
140 |
+
.download a:hover {
|
141 |
+
border-color: #F4762A;
|
142 |
+
}
|
143 |
+
|
144 |
+
#featurs_tables span.download {
|
145 |
+
height: 40px !important;
|
146 |
+
border-bottom: 1px solid #e5e5e5 !important;
|
147 |
+
border-left: 1px solid #e5e5e5 !important;
|
148 |
+
}
|
149 |
+
|
150 |
+
.price_big {
|
151 |
+
color: #F47629;
|
152 |
+
font-size: 22px;
|
153 |
+
}
|
154 |
+
|
155 |
+
.price {
|
156 |
+
display: block;
|
157 |
+
color: #F47629;
|
158 |
+
}
|
159 |
+
|
css/notices.css
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
clear: both;
|
14 |
content: "";
|
15 |
display: block;
|
16 |
-
background-image: url("
|
17 |
background-size: 108px 107px;
|
18 |
background-repeat: no-repeat;
|
19 |
background-position: 0 45%;
|
13 |
clear: both;
|
14 |
content: "";
|
15 |
display: block;
|
16 |
+
background-image: url("../images/FormCreatorLogo.png");
|
17 |
background-size: 108px 107px;
|
18 |
background-repeat: no-repeat;
|
19 |
background-position: 0 45%;
|
featured/featured.php
CHANGED
@@ -41,6 +41,16 @@ function spider_featured($current_plugin = '') {
|
|
41 |
<p>Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.</p>
|
42 |
</div>
|
43 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-calendar.html" class="download">Download</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
</li>
|
45 |
<li class="catalog">
|
46 |
<div class="product"></div>
|
41 |
<p>Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.</p>
|
42 |
</div>
|
43 |
<a target="_blank" href="https://web-dorado.com/products/wordpress-calendar.html" class="download">Download</a>
|
44 |
+
</li>
|
45 |
+
<li class="faq_wd">
|
46 |
+
<div class="product"></div>
|
47 |
+
<div class="title">
|
48 |
+
<strong class="heading">FAQ WD</strong>
|
49 |
+
</div>
|
50 |
+
<div class="description">
|
51 |
+
<p> Organize and publish your FAQs in an easy and elegant way using FAQ WD. </p>
|
52 |
+
</div>
|
53 |
+
<a target="_blank" href="https://web-dorado.com/products/wordpress-faq-wd.html" class="download">Download</a>
|
54 |
</li>
|
55 |
<li class="catalog">
|
56 |
<div class="product"></div>
|
featured/images/faq_wd.png
ADDED
Binary file
|
featured/style.css
CHANGED
@@ -50,6 +50,7 @@
|
|
50 |
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url(images/random.post.png) left center no-repeat;}
|
51 |
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url(images/slider.png) left center no-repeat; background-size: 50%;}
|
52 |
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url(images/folder.menu.png) left center no-repeat;}
|
|
|
53 |
|
54 |
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url(images/zoom.png) left center no-repeat; background-size: 85%;}
|
55 |
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url(images/photo-gallery.png) left center no-repeat #CACACA;
|
50 |
#main_featured_plugins_page #featured-plugins-list li.random_post .product {background:url(images/random.post.png) left center no-repeat;}
|
51 |
#main_featured_plugins_page #featured-plugins-list li.slider_wd .product {background:url(images/slider.png) left center no-repeat; background-size: 50%;}
|
52 |
#main_featured_plugins_page #featured-plugins-list li.folder_menu .product {background:url(images/folder.menu.png) left center no-repeat;}
|
53 |
+
#main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url(images/faq_wd.png) left center no-repeat;}
|
54 |
|
55 |
#main_featured_plugins_page #featured-plugins-list li.zoom .product {background:url(images/zoom.png) left center no-repeat; background-size: 85%;}
|
56 |
#main_featured_plugins_page #featured-plugins-list li.photo-gallery .product {background:url(images/photo-gallery.png) left center no-repeat #CACACA;
|
form-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://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: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -269,7 +269,7 @@ function register_fmemailverification_cpt(){
|
|
269 |
// Activate plugin.
|
270 |
function form_maker_activate() {
|
271 |
$version = get_option("wd_form_maker_version");
|
272 |
-
$new_version = '1.7.
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
3 |
* Plugin Name: Form Maker
|
4 |
* Plugin URI: https://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.76
|
7 |
* Author: WebDorado
|
8 |
* Author URI: https://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
269 |
// Activate plugin.
|
270 |
function form_maker_activate() {
|
271 |
$version = get_option("wd_form_maker_version");
|
272 |
+
$new_version = '1.7.76';
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
images/FormCreatorLogo.png
ADDED
Binary file
|
images/arrow3.png
ADDED
Binary file
|
images/lic_minus.png
ADDED
Binary file
|
images/lic_plus.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://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, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -293,6 +293,14 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
293 |
|
294 |
== Changelog ==
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
= 1.7.74 =
|
297 |
Fixed: Minor bugs
|
298 |
|
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, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, input, validation, send copy, form with captcha
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.7.76
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
293 |
|
294 |
== Changelog ==
|
295 |
|
296 |
+
= 1.7.76 =
|
297 |
+
Changed: Licensing/Donation page
|
298 |
+
Chenged: Notices
|
299 |
+
|
300 |
+
= 1.7.75 =
|
301 |
+
Changed: Submissions default ordering
|
302 |
+
Changed: Featured Plugins page
|
303 |
+
|
304 |
= 1.7.74 =
|
305 |
Fixed: Minor bugs
|
306 |
|