Priority File Manager

Base Directory:
/home/lvabrwqv/public_html/wp-content/plugins/gravityforms/js
NameTypeSizeActions
📁 .. Folder -
📄 chosen.jquery.min.js File 29121
Edit Download
📁 components Folder -
📄 conditional_logic.js File 24939
Edit Download
📄 conditional_logic.min.js File 9819
Edit Download
📄 datepicker-legacy.js File 1565
Edit Download
📄 datepicker-legacy.min.js File 959
Edit Download
📄 datepicker.js File 6913
Edit Download
📄 datepicker.min.js File 2995
Edit Download
📄 duplicate-submissions.js File 3217
Edit Download
📄 duplicate-submissions.min.js File 903
Edit Download
📄 form_admin.js File 66106
Edit Download
📄 form_admin.min.js File 34185
Edit Download
📄 form_editor.js File 172745
Edit Download
📄 form_editor.min.js File 110165
Edit Download
📄 forms.js File 1933
Edit Download
📄 forms.min.js File 1036
Edit Download
📄 gf_field_filter.js File 12634
Edit Download
📄 gf_field_filter.min.js File 5894
Edit Download
📄 gforms_hooks.js File 4101
Edit Download
📄 gforms_hooks.min.js File 2139
Edit Download
📄 gravityforms.js File 108690
Edit Download
📄 gravityforms.min.js File 45287
Edit Download
📄 index.php File 27
Edit Download
📄 jquery.json-1.3.js File 4884
Edit Download
📄 jquery.json-1.3.min.js File 1720
Edit Download
📄 jquery.json.js File 5256
Edit Download
📄 jquery.json.min.js File 1823
Edit Download
📄 jquery.maskedinput-1.3.1.min.js File 4412
Edit Download
📄 jquery.maskedinput.js File 10652
Edit Download
📄 jquery.maskedinput.min.js File 4159
Edit Download
📄 jquery.textareaCounter.plugin.js File 6235
Edit Download
📄 jquery.textareaCounter.plugin.min.js File 1933
Edit Download
📄 layout_editor.js File 40731
Edit Download
📄 layout_editor.min.js File 12978
Edit Download
📄 page_conditional_logic.js File 5409
Edit Download
📄 page_conditional_logic.min.js File 2396
Edit Download
📄 placeholders.jquery.min.js File 4639
Edit Download
📄 plugin_settings.js File 1877
Edit Download
📄 plugin_settings.min.js File 1173
Edit Download
📄 preview.js File 2269
Edit Download
📄 preview.min.js File 1468
Edit Download
📄 shortcode-ui.js File 26346
Edit Download
📄 shortcode-ui.min.js File 10910
Edit Download
📄 skip.js File 127
Edit Download
📄 skip.min.js File 55
Edit Download
📄 tooltip_init.js File 2433
Edit Download
📄 tooltip_init.min.js File 1356
Edit Download
📁 vendor Folder -
function Form(){ this.id = 0; this.title = gf_vars.formTitle; this.description = gf_vars.formDescription; this.labelPlacement = "top_label"; this.subLabelPlacement = "below"; this.maxEntriesMessage = ""; this.confirmation = new Confirmation(); this.button = new Button(); this.fields = new Array(); } function Confirmation(){ this.type = "message"; this.message = gf_vars.formConfirmationMessage; this.url = ""; this.pageId = ""; this.queryString=""; } function Button(){ this.type = "text"; this.text = gf_vars.buttonText; this.imageUrl = ""; } function Field(id, type){ this.id = id; this.formId = window.form.id; this.label = ""; this.adminLabel = ""; this.type = type; this.isRequired = false; this.size = "large"; this.errorMessage = ""; this.visibility = "visible"; //NOTE: other properties will be added dynamically using associative array syntax } function Choice(text, value, price){ this.text=text; this.value = value ? value : text; this.isSelected = false; this.price = price ? price : ""; } /** * Create a form Input object. * * @since unknown * @since 2.5 * * @param {string|int} id The input ID. * @param {string} label The input label. * @param {string} [autocompleteAttribute] The autocomplete attribute value. */ function Input( id, label, autocompleteAttribute ) { this.id = id; this.label = label; this.name = ""; if ( typeof autocompleteAttribute !== "undefined" ) { this.autocompleteAttribute = autocompleteAttribute; } } function ConditionalLogic(){ this.actionType = "show"; //show or hide this.logicType = "all"; //any or all this.rules = [new ConditionalRule()]; } function ConditionalRule(){ this.fieldId = 0; this.operator = "is"; //is or isnot this.value = ""; }