Version Description
New Add-on: Pushover Integration
Download this release
Release Info
Developer | webdorado |
Plugin | Form Maker by WD – user-friendly drag & drop Form Builder plugin |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.1 to 1.8.2
- admin/views/FMViewManage_fm.php +1 -1
- assets/pushover.png +0 -0
- featured/featured.php +8 -1
- form-maker.php +2 -2
- frontend/models/FMModelForm_maker.php +1 -1
- readme.txt +7 -4
admin/views/FMViewManage_fm.php
CHANGED
@@ -2664,7 +2664,7 @@ class FMViewManage_fm {
|
|
2664 |
}
|
2665 |
|
2666 |
public function form_options($id) {
|
2667 |
-
$addons = array('WD_FM_MAILCHIMP' => 'MailChimp', 'WD_FM_REG' => 'Registration', 'WD_FM_POST_GEN' => 'Post Generation', 'WD_FM_EMAIL_COND' => 'Conditional Emails', 'WD_FM_DBOX_INT' => 'Dropbox Integration', 'WD_FM_GDRIVE_INT' => 'Google Drive Integration','WD_FM_PDF' => 'PDF Integration',);
|
2668 |
|
2669 |
$row = $this->model->get_row_data($id);
|
2670 |
$themes = $this->model->get_theme_rows_data();
|
2664 |
}
|
2665 |
|
2666 |
public function form_options($id) {
|
2667 |
+
$addons = array('WD_FM_MAILCHIMP' => 'MailChimp', 'WD_FM_REG' => 'Registration', 'WD_FM_POST_GEN' => 'Post Generation', 'WD_FM_EMAIL_COND' => 'Conditional Emails', 'WD_FM_DBOX_INT' => 'Dropbox Integration', 'WD_FM_GDRIVE_INT' => 'Google Drive Integration', 'WD_FM_PDF' => 'PDF Integration', 'WD_FM_PUSHOVER' => 'Pushover');
|
2668 |
|
2669 |
$row = $this->model->get_row_data($id);
|
2670 |
$themes = $this->model->get_theme_rows_data();
|
assets/pushover.png
ADDED
Binary file
|
featured/featured.php
CHANGED
@@ -247,7 +247,14 @@ function fm_extensions_page($current_plugin = '') {
|
|
247 |
'description' => 'The Form Maker PDF Integration add-on allows sending submitted forms in PDF format.',
|
248 |
'icon' => '',
|
249 |
'image' => plugins_url( '../assets/pdf-integration.png', __FILE__ ),
|
250 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
)
|
252 |
);
|
253 |
|
247 |
'description' => 'The Form Maker PDF Integration add-on allows sending submitted forms in PDF format.',
|
248 |
'icon' => '',
|
249 |
'image' => plugins_url( '../assets/pdf-integration.png', __FILE__ ),
|
250 |
+
),
|
251 |
+
'pushover' => array(
|
252 |
+
'name' => 'Pushover',
|
253 |
+
'url' => 'https://web-dorado.com/products/wordpress-form/add-ons/pushover.html',
|
254 |
+
'description' => 'Form Maker Pushover integration allows to receive real-time notifications when a user submits a new form. This means messages can be pushed to Android and Apple devices, as well as desktop notification board.',
|
255 |
+
'icon' => '',
|
256 |
+
'image' => plugins_url( '../assets/pushover.png', __FILE__ ),
|
257 |
+
)
|
258 |
)
|
259 |
);
|
260 |
|
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.8.
|
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.8.
|
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.8.2
|
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.8.2';
|
273 |
global $wpdb;
|
274 |
if (!$version) {
|
275 |
add_option("wd_form_maker_version", $new_version, '', 'no');
|
frontend/models/FMModelForm_maker.php
CHANGED
@@ -1542,7 +1542,7 @@ class FMModelForm_maker {
|
|
1542 |
exit;
|
1543 |
}
|
1544 |
|
1545 |
-
$addons = array('WD_FM_GDRIVE_INT' => 'GDriveInt', 'WD_FM_DBOX_INT' => 'DboxInt', 'WD_FM_POST_GEN' => 'PostGen'); // the sequence is important for google drive and drop box addons !!!!!!!!!!
|
1546 |
foreach($addons as $addon => $addon_name) {
|
1547 |
if (defined($addon) && is_plugin_active(constant($addon))) {
|
1548 |
$_GET['addon_task'] = 'frontend';
|
1542 |
exit;
|
1543 |
}
|
1544 |
|
1545 |
+
$addons = array('WD_FM_GDRIVE_INT' => 'GDriveInt', 'WD_FM_DBOX_INT' => 'DboxInt', 'WD_FM_POST_GEN' => 'PostGen', 'WD_FM_PUSHOVER' => 'Pushover'); // the sequence is important for google drive and drop box addons !!!!!!!!!!
|
1546 |
foreach($addons as $addon => $addon_name) {
|
1547 |
if (defined($addon) && is_plugin_active(constant($addon))) {
|
1548 |
$_GET['addon_task'] = 'frontend';
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado
|
|
3 |
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 , pdf
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -30,8 +30,8 @@ Form Maker is a FREE and user-friendly plugin to create highly customizable and
|
|
30 |
[Post Generation Add-on](https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html)
|
31 |
[Conditional Emails Add-on](https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html)
|
32 |
[Dropbox Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html)
|
33 |
-
[Google Drive Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html)
|
34 |
-
|
35 |
|
36 |
https://www.youtube.com/watch?v=QelKxyW7M98
|
37 |
|
@@ -300,6 +300,9 @@ The Form Maker (Pro version) has simple PayPal integration. This allows the user
|
|
300 |
|
301 |
== Changelog ==
|
302 |
|
|
|
|
|
|
|
303 |
= 1.8.1 =
|
304 |
Fixed: Bug in email options
|
305 |
Changed: Backend design
|
3 |
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 , pdf
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 1.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
30 |
[Post Generation Add-on](https://web-dorado.com/products/wordpress-form/add-ons/post-generation.html)
|
31 |
[Conditional Emails Add-on](https://web-dorado.com/products/wordpress-form/add-ons/conditional-emails.html)
|
32 |
[Dropbox Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/dropbox.html)
|
33 |
+
[Google Drive Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/google-drive.html)
|
34 |
+
[Pushover Integration Add-on](https://web-dorado.com/products/wordpress-form/add-ons/pushover.html)
|
35 |
|
36 |
https://www.youtube.com/watch?v=QelKxyW7M98
|
37 |
|
300 |
|
301 |
== Changelog ==
|
302 |
|
303 |
+
= 1.8.2 =
|
304 |
+
New Add-on: Pushover Integration
|
305 |
+
|
306 |
= 1.8.1 =
|
307 |
Fixed: Bug in email options
|
308 |
Changed: Backend design
|