-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.php
More file actions
1221 lines (993 loc) · 49.2 KB
/
js.php
File metadata and controls
1221 lines (993 loc) · 49.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
if ( ! class_exists( 'GFForms' ) ) {
die();
}
?>
<script type="text/javascript">
var gforms_dragging = 0;
var gforms_original_json;
function DeleteCustomChoice() {
if (!confirm("<?php _e("Delete this custom choice list? 'OK' to delete, 'Cancel' to abort.", "gravityforms") ?>"))
return;
//Sending AJAX request
jQuery.post( ajaxurl, {action: "gf_delete_custom_choice", name: gform_selected_custom_choice, gf_delete_custom_choice: "<?php echo wp_create_nonce("gf_delete_custom_choice") ?>"});
//Updating UI
delete gform_custom_choices[gform_selected_custom_choice];
gform_selected_custom_choice = '';
CloseCustomChoicesPanel();
jQuery("#gfield_bulk_add_input").val('');
InitBulkCustomPanel();
LoadCustomChoices();
DisplayCustomMessage("<?php _e( 'Item has been deleted.', 'gravityforms' )?>");
}
function SaveCustomChoices() {
var name = jQuery('#custom_choice_name').val();
if (name.length == 0) {
alert("<?php _e( 'Please enter name.', 'gravityforms' ) ?>");
return;
}
else if (gform_custom_choices[name] && name != gform_selected_custom_choice) {
alert("<?php _e( 'This custom choice name is already in use. Please enter another name.', 'gravityforms' ) ?>");
return;
}
var choices = jQuery('#gfield_bulk_add_input').val().split('\n');
//Sending AJAX request
jQuery.post(ajaxurl, {action: "gf_save_custom_choice", previous_name: gform_selected_custom_choice, new_name: name, choices: jQuery.toJSON(choices), gf_save_custom_choice: "<?php echo wp_create_nonce("gf_save_custom_choice") ?>"});
//deleting existing custom choice
if (gform_selected_custom_choice.length > 0)
delete gform_custom_choices[gform_selected_custom_choice];
//saving new custom choice
gform_custom_choices[name] = choices;
InitBulkCustomPanel();
LoadCustomChoices();
DisplayCustomMessage("<?php _e( 'Item has been saved.', 'gravityforms' )?>");
}
function InitializeFormConditionalLogic() {
var canHaveConditionalLogic = GetFirstRuleField() > 0;
if (canHaveConditionalLogic) {
jQuery("#form_button_conditional_logic").prop("disabled", false).prop("checked", form.button.conditionalLogic ? true : false);
ToggleConditionalLogic(true, "form_button");
}
else {
jQuery("#form_button_conditional_logic").prop("disabled", false).prop("checked", false);
jQuery("#form_button_conditional_logic_container").show().html("<span class='instruction' style='margin-left:0'><?php _e( 'To use conditional logic, please create a field that supports conditional logic.', 'gravityforms' ) ?></span>");
}
}
function InitPaginationOptions(isInit) {
var speed = isInit ? "" : "slow";
var pages = GetFieldsByType(["page"]);
pages.push(new Array());
var str = "<ul class='gform_page_names'>";
var pageNameFields = jQuery(".gform_page_names input");
for (var i = 0; i < pages.length; i++) {
var pageName = form["pagination"] && form["pagination"]["pages"] && form["pagination"]["pages"][i] ? form["pagination"]["pages"][i].replace("'", "'") : "";
if (pageNameFields.length > i && pageNameFields[i].value)
pageName = pageNameFields[i].value;
str += "<li><label class='inline' for='gform_pagename_" + i + "' ><?php _e( 'Page', 'gravityforms' ) ?> " + (i + 1) + "</label> <input type='text' class='fieldwidth-4' id='gform_pagename_" + i + "' value='" + pageName + "' /></li>";
}
str += "</ul>";
jQuery("#page_names_container").html(str);
if (jQuery("#pagination_type_none").is(":checked")) {
jQuery(".gform_page_names input").val("");
jQuery("#percentage_confirmation_page_name").val("");
jQuery("#percentage_confirmation_display").prop("checked", false);
jQuery("#page_names_setting").hide(speed);
jQuery("#percentage_style_setting").hide(speed);
jQuery("#percentage_confirmation_display_setting").hide(speed);
}
else if (jQuery("#pagination_type_percentage").is(":checked")) {
var style = form["pagination"] && form["pagination"]["style"] ? form["pagination"]["style"] : "blue";
jQuery("#percentage_style").val(style);
if (style == "custom" && form["pagination"]["backgroundColor"]) {
jQuery("#percentage_style_custom_bgcolor").val(form["pagination"]["backgroundColor"]);
SetColorPickerColor("percentage_style_custom_bgcolor", form["pagination"]["backgroundColor"], "");
}
if (style == "custom" && form["pagination"]["color"]) {
jQuery("#percentage_style_custom_color").val(form["pagination"]["color"]);
SetColorPickerColor("percentage_style_custom_color", form["pagination"]["color"], "");
}
jQuery("#page_names_setting").show(speed);
jQuery("#percentage_style_setting").show(speed);
jQuery("#percentage_confirmation_display_setting").show(speed);
jQuery("#percentage_confirmation_page_name_setting").show(speed);
jQuery("#percentage_confirmation_display").prop("checked", form["pagination"] && form["pagination"]["display_progressbar_on_confirmation"] ? true : false);
//set default text to Completed when displaying progress bar on confirmation is NOT checked
var completion_text = form["pagination"] && form["pagination"]["display_progressbar_on_confirmation"] ? form["pagination"]["progressbar_completion_text"] : "<?php _e( 'Completed','gravityforms' ) ?>";
jQuery("#percentage_confirmation_page_name").val(completion_text);
}
else {
jQuery("#percentage_style_setting").hide(speed);
jQuery("#page_names_setting").show(speed);
jQuery("#percentage_confirmation_display_setting").hide(speed);
jQuery("#percentage_confirmation_page_name_setting").hide(speed);
jQuery("percentage_confirmation_page_name").val("");
jQuery("#percentage_confirmation_display").prop("checked", false);
}
TogglePercentageStyle(isInit);
TogglePercentageConfirmationText(isInit);
}
function ShowSettings(element_id) {
jQuery(".field_selected .field_edit_icon, .field_selected .form_edit_icon").removeClass("edit_icon_collapsed").addClass("edit_icon_expanded").html('<i class="fa fa-caret-up fa-lg"></i>');
jQuery("#" + element_id).slideDown();
}
function HideSettings(element_id) {
jQuery(".field_edit_icon, .form_edit_icon").removeClass("edit_icon_expanded").addClass("edit_icon_collapsed").html('<i class="fa fa-caret-down fa-lg"></i>');
jQuery("#" + element_id).hide();
}
function TogglePostCategoryInitialItem(isInit) {
var speed = isInit ? "" : "slow";
if (jQuery("#gfield_post_category_initial_item_enabled").is(":checked")) {
jQuery("#gfield_post_category_initial_item_container").show(speed);
if (!isInit) {
jQuery("#field_post_category_initial_item").val('<?php _e( 'Select a category', 'gravityforms' )?>');
}
}
else {
jQuery("#gfield_post_category_initial_item_container").hide(speed);
jQuery("#field_post_category_initial_item").val('');
}
}
function CreateInputNames(field) {
var field_str = "", id, value, inputs;
var inputType = GetInputType(field);
var legacy = jQuery.inArray(inputType, ['date', 'email', 'time', 'password'])>-1;
inputs = !legacy ? field['inputs'] : null;
if (!inputs || GetInputType(field) == "checkbox") {
field_str = "<label for='field_input_name' class='inline'><?php _e( 'Parameter Name:', 'gravityforms' ); ?> </label>";
field_str += "<input type='text' value='" + field["inputName"] + "' id='field_input_name' />";
}
else {
field_str = "<table><tr><td><strong>Field</strong></td><td><strong><?php _e( 'Parameter Name', 'gravityforms' ); ?></strong></td></tr>";
for (var i = 0; i < field["inputs"].length; i++) {
id = field["inputs"][i]["id"];
field_str += "<tr class='field_input_name_row' data-input_id='" + id + "' ><td><label for='field_input_" + id + "' class='inline'>" + field["inputs"][i]["label"] + "</label></td>";
value = typeof field["inputs"][i]["name"] != 'undefined' ? field["inputs"][i]["name"] : '';
field_str += "<td><input class='field_input_name' type='text' value='" + value + "' id='field_input_" + id + "' /></td></tr>";
}
}
jQuery("#field_input_name_container").html(field_str);
}
function CreateDefaultValuesUI(field) {
var field_str, defaultValue, inputName, inputId, id, inputs;
if (!field['inputs']) {
field_str = "<label for='field_single_default_value' class='inline'><?php _e( 'Default Value:', 'gravityforms' ); ?> </label>";
defaultValue = typeof field["defaultValue"] != 'undefined' ? field["defaultValue"] : '';
field_str += "<input type='text' value='" + defaultValue + "' id='field_single_default_value'/>";
} else {
field_str = "<table class='default_input_values'><tr><td><strong>Field</strong></td><td><strong><?php _e( 'Default Value', 'gravityforms' ); ?></strong></td></tr>";
for (var i = 0; i < field["inputs"].length; i++) {
id = field["inputs"][i]["id"];
inputName = 'input_' + id.toString();
inputId = inputName.replace('.', '_');
if (!document.getElementById(inputId) && jQuery('[name="' + inputName + '"]').length == 0) {
continue;
}
field_str += "<tr class='default_input_value_row' data-input_id='" + id + "' id='input_default_value_row_" + inputId + "'><td><label for='field_default_value_" + id + "' class='inline'>" + field["inputs"][i]["label"] + "</label></td>";
defaultValue = typeof field["inputs"][i]["defaultValue"] != 'undefined' ? field["inputs"][i]["defaultValue"] : '';
field_str += "<td><input class='default_input_value' type='text' value='" + defaultValue + "' id='field_default_value_" + id + "' /></td></tr>";
}
}
jQuery("#field_default_input_values_container").html(field_str);
}
function CreatePlaceholdersUI(field) {
var field_str, placeholder, inputName, inputId, id;
if (!field["inputs"]) {
field_str = "<label for='field_single_placeholder' class='inline'><?php _e( 'Placeholder:', 'gravityforms' ); ?> </label>";
placeholder = typeof field["placeholder"] != 'undefined' ? field["placeholder"] : '';
field_str += "<input type='text' value='" + placeholder + "' id='field_single_placeholder' />";
} else {
field_str = "<table class='input_placeholders'><tr><td><strong>Field</strong></td><td><strong><?php _e( 'Placeholder', 'gravityforms' ); ?></strong></td></tr>";
for (var i = 0; i < field["inputs"].length; i++) {
id = field["inputs"][i]["id"];
inputName = 'input_' + id.toString();
inputId = inputName.replace('.', '_');
if (!document.getElementById(inputId) && jQuery('[name="' + inputName + '"]').length == 0) {
continue;
}
field_str += "<tr class='input_placeholder_row' data-input_id='" + id + "' id='input_placeholder_row_" + inputId + "'><td><label for='field_placeholder_" + id + "' class='inline'>" + field["inputs"][i]["label"] + "</label></td>";
placeholder = typeof field["inputs"][i]["placeholder"] != 'undefined' ? field["inputs"][i]["placeholder"] : '';
placeholder = placeholder.replace(/'/g, "'");
field_str += "<td><input class='input_placeholder' type='text' value='" + placeholder + "' id='field_placeholder_" + id + "' /></td></tr>";
}
}
jQuery("#field_input_placeholders_container").html(field_str);
}
function GetCustomizeInputsUI(field, showInputSwitches) {
if (typeof showInputSwitches == 'undefined') {
showInputSwitches = true;
}
var imagesUrl = '<?php echo GFCommon::get_base_url() . '/images/'?>';
var html, customLabel, isHidden, title, img, input, inputId, id, inputName, defaultLabel, placeholder;
if (!field['inputs']) {
html = "<label for='field_single_input' class='inline'><?php _e( 'Sub-Label:', 'gravityforms' ); ?> </label>";
customLabel = typeof field["customInputLabel"] != 'undefined' ? field["customInputLabel"] : '';
html += "<input type='text' value='" + customLabel + "' id='field_single_custom_label' />";
} else {
html = "<table class='field_custom_inputs_ui'><tr>";
if (showInputSwitches) {
html += "<td></td>";
}
html += "<td><strong>Field</strong></td><td><strong><?php _e( 'Custom Sub-Label', 'gravityforms' ); ?></strong></td></tr>";
for (var i = 0; i < field["inputs"].length; i++) {
input = field["inputs"][i];
id = input.id;
inputName = 'input_' + id.toString();
inputId = inputName.replace('.', '_');
if (jQuery('label[for="' + inputId + '"]').length == 0) {
continue;
}
isHidden = typeof input.isHidden != 'undefined' && input.isHidden ? true : false;
title = isHidden ? '<?php _e( 'Inactive', 'gravityforms' ); ?>' : '<?php _e( 'Active', 'gravityforms' ); ?>';
img = isHidden ? 'active0.png' : 'active1.png';
html += "<tr data-input_id='" + id + "' class='field_custom_input_row field_custom_input_row_" + inputId + "'>";
if (showInputSwitches) {
html += "<td><img data-input_id='" + input.id + "' title='" + title + "' alt='" + title + "' class='input_active_icon' src='" + imagesUrl + img + "'/></td>";
}
if (isHidden) {
jQuery("#input_" + inputId + "_container").toggle(!isHidden);
}
defaultLabel = typeof input.defaultLabel != 'undefined' ? input.defaultLabel : input.label;
defaultLabel = defaultLabel.replace(/'/g, "'");
html += "<td><label id='field_custom_input_default_label_" + inputId + "' for='field_custom_input_label_" + input.id + "' class='inline'>" + defaultLabel + "</label></td>";
customLabel = typeof input.customLabel != 'undefined' ? input.customLabel : '';
customLabel = customLabel.replace(/'/g, "'");
html += "<td><input class='field_custom_input_default_label' type='text' placeholder='" + defaultLabel + "' value='" + customLabel + "' id='field_custom_input_label_" + input.id + "' /></td></tr>";
}
}
return html;
}
function CreateCustomizeInputsUI(field) {
var field_str = GetCustomizeInputsUI(field);
jQuery("#field_customize_inputs_container").html(field_str);
}
function CreateInputLabelsUI(field) {
var field_str = GetCustomizeInputsUI(field, false);
jQuery("#field_sub_labels_container").html(field_str);
}
function SetCopyValuesOptionProperties(isEnabled) {
var defaultLabel = '<?php _e( 'Same as previous', 'gravityforms' ) ?>';
SetFieldProperty('enableCopyValuesOption', isEnabled == true ? 1 : 0);
SetFieldProperty('copyValuesOptionDefault', 0);
SetFieldProperty('copyValuesOptionLabel', defaultLabel);
var sourceFieldId = jQuery('#field_copy_values_option_field').val();
SetFieldProperty('copyValuesOptionField', sourceFieldId);
}
function ToggleCopyValuesOption(isInit) {
var speed = isInit ? "" : "slow";
if (jQuery('#field_enable_copy_values_option').prop('checked')) {
jQuery('#field_copy_values_container').show(speed);
var field = GetSelectedField();
jQuery('#field_copy_values_option_label').val(field.copyValuesOptionLabel);
jQuery('.field_selected .copy_values_option_label').html(field.copyValuesOptionLabel);
jQuery('.field_selected .copy_values_option_container').show();
} else {
jQuery('#field_copy_values_container').hide(speed);
jQuery('#field_copy_values_option_default').prop('checked', false);
jQuery('.field_selected .copy_values_option_container').hide();
}
}
function ToggleInputHidden(img, inputId) {
var isHidden = img.src.indexOf("active0.png") >= 0;
if (isHidden) {
img.src = img.src.replace("active0.png", "active1.png");
jQuery(img).attr('title', '<?php _e( 'Active', 'gravityforms' ) ?>').attr('alt', '<?php _e( 'Active', 'gravityforms' ) ?>');
}
else {
img.src = img.src.replace("active1.png", "active0.png");
jQuery(img).attr('title', '<?php _e( 'Inactive', 'gravityforms' ) ?>').attr('alt', '<?php _e( 'Inactive', 'gravityforms' ) ?>');
}
SetInputHidden(!isHidden, inputId);
return true;
}
function SetProductField(field) {
var product_field_container = jQuery(".product_field_setting");
//ignore product field if it is not configured for the current field
if (!product_field_container.is(":visible"))
return;
var productFields = new Array();
for (var i = 0; i < form["fields"].length; i++) {
if (form["fields"][i]["type"] == "product")
productFields.push(form["fields"][i]);
}
jQuery("#gform_no_product_field_message").remove();
if (productFields.length < 1) {
jQuery("#product_field").hide().after("<div id='gform_no_product_field_message'><?php _e( 'This field is not associated with a product. Please add a Product Field to the form.', 'gravityforms' ) ?></div>");
}
else {
var product_field = jQuery("#product_field");
product_field.show();
product_field.html("");
var is_selected = false;
for (var i = 0; i < productFields.length; i++) {
selected = "";
if (productFields[i]["id"] == field["productField"]) {
selected = "selected='selected'";
is_selected = true;
}
product_field.append("<option value='" + productFields[i]["id"] + "' " + selected + ">" + productFields[i]["label"] + "</option>");
}
//Adds existing product field if it is not found in the list (to prevent confusion)
if (!is_selected && field["productField"] != "") {
product_field.append("<option value='" + field["productField"] + "' selected='selected'>[<?php _e( 'Deleted Field', 'gravityforms' ) ?>]</option>");
}
}
}
function LoadFieldConditionalLogic(isEnabled, objectType) {
var obj = GetConditionalObject(objectType);
if (isEnabled) {
jQuery("#" + objectType + "_conditional_logic").prop("checked", obj.conditionalLogic ? true : false);
jQuery("#" + objectType + "_conditional_logic").prop("disabled", false);
ToggleConditionalLogic(true, objectType);
}
else {
jQuery("#" + objectType + "_conditional_logic").prop("disabled", true).prop("checked", false);
jQuery("#" + objectType + "_conditional_logic_container").show().html("<span class='instruction' style='margin-left:0'><?php _e( 'To use conditional logic, please create a field that supports conditional logic.', 'gravityforms' ) ?></span>");
}
}
function GetCurrentCurrency() {
<?php
require_once('currency.php');
$current_currency = RGCurrency::get_currency( GFCommon::get_currency() );
?>
var currency = new Currency(<?php echo GFCommon::json_encode( $current_currency )?>);
return currency;
}
function ToggleColumns(isInit) {
var speed = isInit ? "" : "slow";
var field = GetSelectedField();
if (jQuery('#field_columns_enabled').is(":checked")) {
jQuery('#gfield_settings_columns_container').show(speed);
if (!field.choices)
field.choices = new Array(new Choice("<?php _e( 'Column 1', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Column 2', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Column 3', 'gravityforms' ); ?>"));
LoadFieldChoices(field, true);
}
else {
field.choices = null;
jQuery('#gfield_settings_columns_container').hide(speed);
}
UpdateFieldChoices(GetInputType(field));
}
function DuplicateTitleMessage() {
jQuery("#please_wait_container").hide();
alert('<?php _e( 'The form title you have entered is already taken. Please enter a unique form title', 'gravityforms' ); ?>');
}
function ValidateForm() {
var error = "";
if (jQuery.trim(form.title).length == 0) {
error = "<?php _e( 'Please enter a Title for this form. When adding the form to a page or post, you will have the option to hide the title.', 'gravityforms' ) ?>";
}
else {
var last_page_break = -1;
var has_option = false;
var has_product = false;
for (var i = 0; i < form["fields"].length; i++) {
var field = form["fields"][i];
switch (field["type"]) {
case "page" :
if (i == last_page_break + 1 || i == form["fields"].length - 1)
error = "<?php _e( 'Your form currently has one ore more pages without any fields in it. Blank pages are a result of Page Breaks that are positioned as the first or last field in the form or right after to each other. Please adjust your Page Breaks and try again.', 'gravityforms' ) ?>";
last_page_break = i;
break;
case "product" :
has_product = true;
if (jQuery.trim(field["label"]).length == 0)
error = "<?php _e( 'Your form currently has a product field with a blank label. \\nPlease enter a label for all product fields.', 'gravityforms' ) ?>";
break;
case "option" :
has_option = true;
break;
}
}
if (has_option && !has_product) {
error = "<?php _e( 'Your form currently has an option field without a product field.\\nYou must add a product field to your form.', 'gravityforms' ) ?>";
}
}
if (error) {
jQuery("#please_wait_container").hide();
alert(error);
return false;
}
return true;
}
function SaveForm(isNew) {
UpdateFormObject();
if (!ValidateForm()) {
return false;
}
// remove data that is no longer stored in the form object (as of 1.7)
delete form.notification;
delete form.autoResponder;
delete form.notifications;
delete form.confirmation;
delete form.confirmations;
//updating original json. used when verifying if there has been any changes unsaved changed before leaving the page
var form_json = jQuery.toJSON(form);
gforms_original_json = form_json;
if (!isNew) {
jQuery("#gform_meta").val(form_json);
jQuery("#gform_update").submit();
}
else {
jQuery("#please_wait_container").show();
var mysack = new sack("<?php echo admin_url( 'admin-ajax.php' )?>");
mysack.execute = 1;
mysack.method = 'POST';
mysack.setVar("action", "rg_save_form");
mysack.setVar("rg_save_form", "<?php echo wp_create_nonce( 'rg_save_form' ) ?>");
mysack.setVar("id", form.id);
mysack.setVar("form", form_json);
mysack.onError = function () {
alert('<?php echo esc_js( __( 'Ajax error while saving form', 'gravityforms' ) ) ?>')
};
mysack.runAJAX();
}
return true;
}
function DeleteField(fieldId) {
if (form.id == 0 || confirm('<?php _e("Warning! Deleting this field will also delete all entry data associated with it. \'Cancel\' to stop. \'OK\' to delete", 'gravityforms'); ?>')) {
jQuery('#gform_fields li#field_' + fieldId).addClass('gform_pending_delete');
var mysack = new sack("<?php echo admin_url( 'admin-ajax.php' )?>");
mysack.execute = 1;
mysack.method = 'POST';
mysack.setVar("action", "rg_delete_field");
mysack.setVar("rg_delete_field", "<?php echo wp_create_nonce( 'rg_delete_field' ) ?>");
mysack.setVar("form_id", form.id);
mysack.setVar("field_id", fieldId);
mysack.onError = function () {
alert('<?php echo esc_js( __( 'Ajax error while deleting field.', 'gravityforms' ) ) ?>')
};
mysack.runAJAX();
return true;
}
}
function SetDefaultValues(field) {
var inputType = GetInputType(field);
switch (inputType) {
case "post_category" :
field.label = "<?php _e( 'Post Category', 'gravityforms' ); ?>";
field.inputs = null;
field.choices = new Array();
field.displayAllCategories = true;
field.inputType = 'select';
break;
case "section" :
field.label = "<?php _e( 'Section Break', 'gravityforms' ); ?>";
field.inputs = null;
field["displayOnly"] = true;
break;
case "page" :
field.label = "";
field.inputs = null;
field["displayOnly"] = true;
field["nextButton"] = new Button();
field["nextButton"]["text"] = "<?php _e( 'Next', 'gravityforms' ) ?>";
field["previousButton"] = new Button();
field["previousButton"]["text"] = "<?php _e( 'Previous', 'gravityforms' ) ?>";
break;
case "html" :
field.label = "<?php _e( 'HTML Block', 'gravityforms' ); ?>";
field.inputs = null;
field["displayOnly"] = true;
break;
case "list" :
if (!field.label)
field.label = "<?php _e( 'List', 'gravityforms' ); ?>";
field.inputs = null;
break;
case "name" :
if (!field.label)
field.label = "<?php _e( 'Name', 'gravityforms' ); ?>";
field.id = parseFloat(field.id);
field.nameFormat = "advanced";
field.inputs = GetAdvancedNameFieldInputs(field, true, true, true);
break;
case "checkbox" :
if (!field.label)
field.label = "<?php _e( 'Untitled', 'gravityforms' ); ?>";
if (!field.choices)
field.choices = new Array(new Choice("<?php _e( 'First Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Second Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Third Choice', 'gravityforms' ); ?>"));
field.inputs = new Array();
for (var i = 1; i <= field.choices.length; i++) {
field.inputs.push(new Input(field.id + (i / 10), field.choices[i - 1].text));
}
break;
case "radio" :
if (!field.label)
field.label = "<?php _e( 'Untitled', 'gravityforms' ); ?>";
field.inputs = null;
if (!field.choices) {
field.choices = field["enablePrice"] ? new Array(new Choice("<?php _e( 'First Choice', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Second Choice', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Third Choice', 'gravityforms' ); ?>", "", "0.00"))
: new Array(new Choice("<?php _e( 'First Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Second Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Third Choice', 'gravityforms' ); ?>"));
}
break;
case "multiselect" :
case "select" :
if (!field.label)
field.label = "<?php _e( 'Untitled', 'gravityforms' ); ?>";
field.inputs = null;
if (!field.choices) {
field.choices = field["enablePrice"] ? new Array(new Choice("<?php _e( 'First Choice', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Second Choice', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Third Choice', 'gravityforms' ); ?>", "", "0.00"))
: new Array(new Choice("<?php _e( 'First Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Second Choice', 'gravityforms' ); ?>"), new Choice("<?php _e( 'Third Choice', 'gravityforms' ); ?>"));
}
break;
case "address" :
if (!field.label)
field.label = "<?php _e( 'Address', 'gravityforms' ); ?>";
field.inputs = [new Input(field.id + 0.1, '<?php echo esc_js(apply_filters("gform_address_street_" . rgget("id"), apply_filters("gform_address_street",__( 'Street Address', 'gravityforms' ), rgget("id")), rgget("id"))); ?>'), new Input(field.id + 0.2, '<?php echo apply_filters("gform_address_street2_" . rgget("id"), apply_filters("gform_address_street2",__( 'Address Line 2', 'gravityforms' ), rgget("id")), rgget("id")); ?>'), new Input(field.id + 0.3, '<?php echo apply_filters("gform_address_city_" . rgget("id"), apply_filters("gform_address_city",__( 'City', 'gravityforms' ), rgget("id")), rgget("id")); ?>'),
new Input(field.id + 0.4, '<?php echo esc_js(apply_filters("gform_address_state_" . rgget("id"), apply_filters("gform_address_state",__( 'State / Province', 'gravityforms' ), rgget("id")), rgget("id"))); ?>'), new Input(field.id + 0.5, '<?php echo apply_filters("gform_address_zip_" . rgget("id"), apply_filters("gform_address_zip",__( 'ZIP / Postal Code', 'gravityforms' ), rgget("id")), rgget("id")); ?>'), new Input(field.id + 0.6, '<?php echo apply_filters("gform_address_country_" . rgget("id"), apply_filters("gform_address_country",__( 'Country', 'gravityforms' ), rgget("id")), rgget("id")); ?>')];
break;
case "creditcard" :
if (!field.label)
field.label = "<?php _e( 'Credit Card', 'gravityforms' ); ?>";
var ccNumber, ccExpirationMonth, ccExpirationYear, ccSecruityCode, ccCardType, ccName;
ccNumber = new Input(field.id + ".1", '<?php echo esc_js(apply_filters("gform_card_number_" . rgget("id"), apply_filters("gform_card_number",__( 'Card Number', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
ccExpirationMonth = new Input(field.id + ".2_month", '<?php echo esc_js(apply_filters("gform_card_expiration_" . rgget("id"), apply_filters("gform_card_expiration",__( 'Expiration Month', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
ccExpirationMonth.defaultLabel = '<?php echo esc_js( __( 'Expiration Date', 'gravityforms' ) ); ?>';
ccExpirationYear = new Input(field.id + ".2_year", '<?php echo esc_js(apply_filters("gform_card_expiration_" . rgget("id"), apply_filters("gform_card_expiration",__( 'Expiration Year', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
ccSecruityCode = new Input(field.id + ".3", '<?php echo esc_js(apply_filters("gform_card_security_code_" . rgget("id"), apply_filters("gform_card_security_code",__( 'Security Code', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
ccCardType = new Input(field.id + ".4", '<?php echo esc_js(apply_filters("gform_card_type_" . rgget("id"), apply_filters("gform_card_type",__( 'Card Type', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
ccName = new Input(field.id + ".5", '<?php echo esc_js(apply_filters("gform_card_name_" . rgget("id"), apply_filters("gform_card_name",__( 'Cardholder Name', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
field.inputs = [ccNumber, ccExpirationMonth, ccExpirationYear, ccSecruityCode, ccCardType, ccName];
break;
case "email" :
field.inputs = GetEmailFieldInputs(field);
if (!field.label)
field.label = "<?php _e( 'Email', 'gravityforms' ); ?>";
break;
case "number" :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'Number', 'gravityforms' ); ?>";
if (!field.numberFormat)
field.numberFormat = "decimal_dot";
break;
case "phone" :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'Phone', 'gravityforms' ); ?>";
field.phoneFormat = "standard";
break;
case "date" :
field.inputs = GetDateFieldInputs(field);
if (!field.label)
field.label = "<?php _e( 'Date', 'gravityforms' ); ?>";
break;
case "time" :
field.inputs = GetTimeFieldInputs(field);
if (!field.label)
field.label = "<?php _e( 'Time', 'gravityforms' ); ?>";
break;
case "website" :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'Website', 'gravityforms' ); ?>";
break;
case "password" :
field.inputs = GetPasswordFieldInputs(field);
field["displayOnly"] = true;
if (!field.label)
field.label = "<?php _e( 'Password', 'gravityforms' ); ?>";
break;
case "fileupload" :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'File', 'gravityforms' ); ?>";
break;
case "hidden" :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'Hidden Field', 'gravityforms' ); ?>";
break;
case "post_title" :
field.inputs = null;
field.label = "<?php _e( 'Post Title', 'gravityforms' ); ?>";
break;
case "post_content" :
field.inputs = null;
field.label = "<?php _e( 'Post Body', 'gravityforms' ); ?>";
break;
case "post_excerpt" :
field.inputs = null;
field.label = "<?php _e( 'Post Excerpt', 'gravityforms' ); ?>";
field.size = "small";
break;
case "post_tags" :
field.inputs = null;
field.label = "<?php _e( 'Post Tags', 'gravityforms' ); ?>";
field.size = "large";
break;
case "post_custom_field" :
field.inputs = null;
if (!field.inputType)
field.inputType = "text";
field.label = "<?php _e( 'Post Custom Field', 'gravityforms' ); ?>";
break;
case "post_image" :
field.label = "<?php _e( 'Post Image', 'gravityforms' ); ?>";
field.inputs = null;
field["allowedExtensions"] = "jpg, jpeg, png, gif";
break;
case "captcha" :
field.inputs = null;
field["displayOnly"] = true;
field.label = "<?php _e( 'Captcha', 'gravityforms' ); ?>";
break;
case "calculation" :
field.enableCalculation = true;
case "singleproduct" :
case "product" :
case "hiddenproduct" :
field.label = '<?php _e( 'Product Name', 'gravityforms' )?>';
field.inputs = null;
if (!field.inputType)
field.inputType = "singleproduct";
if (field.inputType == "singleproduct" || field.inputType == "hiddenproduct" || field.inputType == "calculation") {
//convert field id to a number so it isn't treated as a string
//caused concatenation below instead of addition
field_id = parseFloat(field.id);
field.inputs = [new Input(field_id + 0.1, '<?php echo __( 'Name', 'gravityforms' ); ?>'), new Input(field_id + 0.2, '<?php echo __( 'Price', 'gravityforms' ); ?>'), new Input(field_id + 0.3, '<?php echo __( 'Quantity', 'gravityforms' ); ?>')];
field.enablePrice = null;
}
productDependentFields = GetFieldsByType(["option", "quantity"]);
for (var i = 0; i < productDependentFields.length; i++) {
if (!productDependentFields[i]["productField"])
productDependentFields[i]["productField"] = field.id;
}
break;
case "singleshipping" :
case "shipping" :
field.label = '<?php _e( 'Shipping', 'gravityforms' )?>';
field.inputs = null;
if (!field.inputType)
field.inputType = "singleshipping";
if (field.inputType == "singleshipping")
field.enablePrice = null;
break;
case "total" :
field.label = '<?php _e( 'Total', 'gravityforms' )?>';
field.inputs = null;
break;
case "option" :
field.label = '<?php _e( 'Option', 'gravityforms' )?>';
if (!field.inputType)
field.inputType = "select";
if (!field.choices) {
field.choices = new Array(new Choice("<?php _e( 'First Option', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Second Option', 'gravityforms' ); ?>", "", "0.00"), new Choice("<?php _e( 'Third Option', 'gravityforms' ); ?>", "", "0.00"));
}
field["enablePrice"] = true;
productFields = GetFieldsByType(["product"]);
if (productFields.length > 0)
field["productField"] = productFields[0]["id"];
break;
case "donation" :
field.label = '<?php _e( 'Donation', 'gravityforms' )?>';
if (!field.inputType)
field.inputType = "donation";
field.inputs = null;
field.enablePrice = null;
break;
case "price" :
field.label = '<?php _e( 'Price', 'gravityforms' )?>';
if (!field.inputType)
field.inputType = "price";
field.inputs = null;
field["enablePrice"] = null;
break;
case "quantity" :
field.label = '<?php _e( 'Quantity', 'gravityforms' )?>';
if (!field.inputType)
field.inputType = "number";
productFields = GetFieldsByType(["product"]);
if (productFields.length > 0)
field["productField"] = productFields[0]["id"];
if (!field.numberFormat)
field.numberFormat = "decimal_dot";
break;
<?php do_action('gform_editor_js_set_default_values'); ?>
default :
field.inputs = null;
if (!field.label)
field.label = "<?php _e( 'Untitled', 'gravityforms' ); ?>";
break;
break;
}
if (window["SetDefaultValues_" + inputType])
field = window["SetDefaultValues_" + inputType](field);
}
function GetAdvancedNameFieldInputs(field, prefixHidden, middleHidden, suffixHidden) {
var prefixInput = new Input(field.id + '.2', '<?php echo esc_js(apply_filters("gform_name_prefix_" . rgget("id"), apply_filters("gform_name_prefix", __( 'Prefix', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
prefixInput.choices = GetDefaultPrefixChoices();
prefixInput.isHidden = prefixHidden;
var firstInput = new Input(field.id + '.3', '<?php echo apply_filters("gform_name_first_" . rgget("id"),apply_filters("gform_name_first",__( 'First', 'gravityforms' ), rgget("id")), rgget("id")); ?>');
var middleInput = new Input(field.id + '.4', '<?php echo apply_filters("gform_name_middle_" . rgget("id"),apply_filters("gform_name_middle",__( 'Middle', 'gravityforms' ), rgget("id")), rgget("id")); ?>');
middleInput.isHidden = middleHidden;
var lastInput = new Input(field.id + '.6', '<?php echo apply_filters("gform_name_last_" . rgget("id"), apply_filters("gform_name_last",__( 'Last', 'gravityforms' ), rgget("id")), rgget("id")); ?>');
var suffixInput = new Input(field.id + '.8', '<?php echo apply_filters("gform_name_suffix_" . rgget("id"), apply_filters("gform_name_suffix",__( 'Suffix', 'gravityforms' ), rgget("id")), rgget("id")); ?>');
suffixInput.isHidden = suffixHidden;
prefixInput.inputType = 'radio';
return [prefixInput, firstInput, middleInput, lastInput, suffixInput];
}
function GetDateFieldInputs(field) {
if (typeof field.dateType == 'undefined' || field.dateType == 'datepicker' || field.dateType == '') {
return null;
}
var inputs, day, month, year;
switch (field.dateType) {
case 'datefield' :
month = new Input(field.id + '.1', '<?php echo esc_js( _x( 'MM', 'Abbreviation: Month', 'gravityforms' ) )?>');
day = new Input(field.id + '.2', '<?php echo esc_js( __( 'DD', 'gravityforms' ) )?>');
year = new Input(field.id + '.3', '<?php echo esc_js( __( 'YYYY', 'gravityforms' ) )?>');
break;
case 'datedropdown' :
month = new Input(field.id + '.1', '<?php echo esc_js( __( 'Month', 'gravityforms' ) )?>');
month.placeholder = '<?php echo esc_js( __( 'Month', 'gravityforms' ) )?>';
day = new Input(field.id + '.2', '<?php echo esc_js( 'Day', 'gravityforms' )?>');
day.placeholder = '<?php echo esc_js( __( 'Day', 'gravityforms' ) )?>';
year = new Input(field.id + '.3', '<?php echo esc_js( __( 'Year', 'gravityforms' ) )?>');
year.placeholder = '<?php echo esc_js( __( 'Year', 'gravityforms' ) )?>';
break;
default:
}
inputs = [month, day, year];
return inputs;
}
function GetTimeFieldInputs(field) {
var min, hour, ampm;
hour = new Input(field.id + '.1', '<?php echo esc_js( __( 'HH', 'gravityforms' ) )?>');
min = new Input(field.id + '.2', '<?php echo esc_js( _x( 'MM', 'Abbreviation: Minutes', 'gravityforms' ) )?>');
ampm = new Input(field.id + '.3', '<?php echo esc_js( __( 'AM/PM', 'gravityforms' ) )?>');
return [hour, min, ampm];
}
function GetEmailFieldInputs(field) {
if (typeof field.emailConfirmEnabled == 'undefined' || field.emailConfirmEnabled == false) {
return null;
}
var email, confirmation;
email = new Input(field.id, "<?php echo esc_js( __( 'Enter Email', 'gravityforms' ) )?>");
confirmation = new Input(field.id + '.2', '<?php echo esc_js( __( 'Confirm Email', 'gravityforms' ) )?>');
return [email, confirmation];
}
function GetPasswordFieldInputs(field) {
var password, confirmation;
password = new Input(field.id, '<?php echo esc_js( __( 'Enter Password', 'gravityforms' ) )?>');
confirmation = new Input(field.id + '.2', '<?php echo esc_js( __( 'Confirm Password', 'gravityforms' ) )?>');
return [password, confirmation];
}
function UpgradeCreditCardField(field) {
var legacyExpirationInput = GetInput(field, field.id + ".2");
if (legacyExpirationInput) {
var monthInput = new Input(field.id + ".2_month", '<?php echo esc_js(apply_filters("gform_card_expiration_" . rgget("id"), apply_filters("gform_card_expiration",__( 'Expiration Month', 'gravityforms' ), rgget("id")), rgget("id"))); ?>');
monthInput.defaultLabel = '<?php echo esc_js( __( 'Expiration Date', 'gravityforms' ) ); ?>';
var yearInput = new Input(field.id + ".2_year", '<?php echo esc_js( __( 'Expiration Year', 'gravityforms' ) ); ?>');
field.inputs.splice(1, 1, monthInput, yearInput);
var nameInput = GetInput(field, field.id + ".5");
nameInput.label = '<?php echo esc_js(apply_filters("gform_card_name_" . rgget("id"), apply_filters("gform_card_name",__( 'Cardholder Name', 'gravityforms' ), rgget("id")), rgget("id"))); ?>';
}
return field;
}
function GetDefaultPrefixChoices() {
return new Array(new Choice("<?php echo esc_js( __( 'Mr.', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Mrs.', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Miss', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Ms.', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Dr.', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Prof.', 'gravityforms' ) ); ?>"), new Choice("<?php echo esc_js( __( 'Rev.', 'gravityforms' ) ); ?>"));
}
function CreateField(id, type) {
var field = new Field(id, type);
SetDefaultValues(field);
if (field.type == "captcha") {
<?php
$publickey = get_option("rg_gforms_captcha_public_key");
$privatekey = get_option("rg_gforms_captcha_private_key");
if(class_exists("ReallySimpleCaptcha") && (empty($publickey) || empty($privatekey))){
?>
field.captchaType = "simple_captcha";
<?php
}
?>
}
return field;
}
function CanFieldBeAdded(type) {
switch (type) {
case "captcha" :
if (GetFieldsByType(["captcha"]).length > 0) {
alert("<?php _e( 'Only one reCAPTCHA field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "shipping" :
if (GetFieldsByType(["shipping"]).length > 0) {
alert("<?php _e( 'Only one Shipping field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "post_content" :
if (GetFieldsByType(["post_content"]).length > 0) {
alert("<?php _e( 'Only one Post Content field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "post_title" :
if (GetFieldsByType(["post_title"]).length > 0) {
alert("<?php _e( 'Only one Post Title field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "post_excerpt" :
if (GetFieldsByType(["post_excerpt"]).length > 0) {
alert("<?php _e( 'Only one Post Excerpt field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "creditcard" :
if (GetFieldsByType(["creditcard"]).length > 0) {
alert("<?php _e( 'Only one credit card field can be added to the form', 'gravityforms' ) ?>");
return false;
}
break;
case "quantity" :
case "option" :
if (GetFieldsByType(["product"]).length <= 0) {