├── index.php ├── modules ├── framework │ └── vue-ui │ │ ├── components │ │ ├── fselect.php │ │ ├── title.php │ │ ├── tabs-panel.php │ │ ├── list-table-item.php │ │ ├── list-table-heading.php │ │ ├── collapse.php │ │ └── list-table.php │ │ └── assets │ │ └── js │ │ └── cx-vue-ui.js ├── actions-v2 │ ├── .eslintrc.js │ ├── send-email │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── call-hook │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── register-user │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── insert-post │ │ ├── assets │ │ │ └── build │ │ │ │ └── editor.asset.php │ │ └── properties │ │ │ ├── post-date-property.php │ │ │ ├── post-parent-property.php │ │ │ ├── post-author-property.php │ │ │ ├── post-content-property.php │ │ │ ├── post-excerpt-property.php │ │ │ ├── post-date-gmt-property.php │ │ │ └── post-comments-property.php │ ├── insert-term │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── call-webhook │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── update-user │ │ ├── assets │ │ │ └── build │ │ │ │ └── editor.asset.php │ │ └── properties │ │ │ ├── nick-name-property.php │ │ │ ├── last-name-property.php │ │ │ ├── description-property.php │ │ │ ├── first-name-property.php │ │ │ └── display-name-property.php │ ├── get-response │ │ ├── assets │ │ │ └── build │ │ │ │ └── editor.asset.php │ │ ├── rest-api │ │ │ └── get-response │ │ │ │ └── get-response-route.php │ │ └── api │ │ │ └── get-lists-action.php │ ├── assets │ │ └── build │ │ │ └── editor.asset.php │ ├── mailchimp │ │ ├── api │ │ │ ├── interfaces │ │ │ │ ├── list-interface.php │ │ │ │ └── subscriber-interface.php │ │ │ └── traits │ │ │ │ ├── list-trait.php │ │ │ │ └── subscriber-trait.php │ │ ├── assets │ │ │ └── build │ │ │ │ └── editor.asset.php │ │ └── rest-api │ │ │ └── mailchimp │ │ │ └── mailchimp-route.php │ └── redirect-to-page │ │ └── assets │ │ └── build │ │ └── editor.asset.php ├── admin │ └── assets │ │ └── build │ │ ├── go-pro.css │ │ └── plugins.js ├── deprecated │ └── assets │ │ └── build │ │ ├── frontend.asset.php │ │ └── frontend.js ├── html-parser │ ├── assets │ │ └── build │ │ │ ├── parser.asset.php │ │ │ └── admin-ui.asset.php │ └── admin │ │ ├── serialize.js │ │ └── index.js ├── option-field │ ├── assets │ │ └── build │ │ │ ├── radio.asset.php │ │ │ ├── select.asset.php │ │ │ ├── checkbox.asset.php │ │ │ ├── custom.options.restrictions.asset.php │ │ │ ├── editor.asset.php │ │ │ ├── select.css │ │ │ └── editor.css │ └── interfaces │ │ └── support-option-query-it.php ├── promo-banner │ └── assets │ │ └── build │ │ ├── index.asset.php │ │ └── index.css ├── switcher │ ├── assets │ │ └── build │ │ │ ├── switcher.asset.php │ │ │ └── editor.asset.php │ └── blocks │ │ └── switcher │ │ └── block-render.php ├── wysiwyg │ └── assets │ │ └── build │ │ ├── wysiwyg.asset.php │ │ └── editor.asset.php ├── captcha │ ├── assets │ │ └── build │ │ │ ├── editor.asset.php │ │ │ ├── hcaptcha │ │ │ ├── frontend.asset.php │ │ │ └── editor.asset.php │ │ │ ├── turnstile │ │ │ ├── frontend.asset.php │ │ │ └── editor.asset.php │ │ │ ├── friendly.captcha │ │ │ ├── frontend.asset.php │ │ │ └── editor.asset.php │ │ │ ├── re-captcha-v3 │ │ │ ├── frontend.asset.php │ │ │ └── editor.asset.php │ │ │ └── editor.package.asset.php │ ├── .eslintrc.js │ └── abstract-captcha │ │ ├── captcha-frontend-style-it.php │ │ ├── captcha-separate-editor-script.php │ │ ├── captcha-separate-frontend-script.php │ │ └── captcha-settings-from-options.php ├── gateways │ ├── assets │ │ └── build │ │ │ ├── editor.asset.php │ │ │ └── admin │ │ │ └── pages │ │ │ ├── jfb-payments.asset.php │ │ │ ├── payment-print.asset.php │ │ │ └── jfb-payments-single.asset.php │ ├── actions-abstract │ │ └── action-application-raw-body-it.php │ ├── legacy │ │ ├── base-gateway-action.php │ │ ├── gateway-manager.php │ │ └── payment-details-box.php │ ├── paypal │ │ ├── scenarios-connectors │ │ │ └── pay-now.php │ │ ├── scenarios-logic-manager.php │ │ └── scenarios-logic │ │ │ └── with-resource-it.php │ ├── scenario-item.php │ ├── scenarios-abstract │ │ └── scenario-logic-repository.php │ ├── meta-boxes │ │ └── columns │ │ │ ├── city-column.php │ │ │ ├── country-column.php │ │ │ ├── state-column.php │ │ │ ├── payment-currency-column.php │ │ │ ├── postal-code-column.php │ │ │ ├── address-line-1-column.php │ │ │ ├── address-line-2-column.php │ │ │ ├── payment-amount-column.php │ │ │ ├── payer-email-column.php │ │ │ ├── payer-last-name-column.php │ │ │ ├── ship-full-name-column.php │ │ │ └── payer-first-name-column.php │ ├── table-views │ │ └── columns │ │ │ ├── transaction-column.php │ │ │ ├── header-actions-column.php │ │ │ └── row-actions-column.php │ └── db-models │ │ └── constraints │ │ ├── payer-model-constraint.php │ │ └── payment-model-constraint.php ├── jet-style │ └── assets │ │ └── build │ │ └── editor.asset.php ├── sanitize-value │ ├── assets │ │ └── build │ │ │ └── editor.asset.php │ ├── interfaces │ │ ├── number-sanitizer-it.php │ │ ├── value-sanitizer-settings-it.php │ │ └── value-sanitizer-it.php │ └── traits │ │ └── number-sanitizer-trait.php ├── active-campaign │ ├── assets │ │ └── build │ │ │ ├── admin │ │ │ └── jfb-settings.asset.php │ │ │ └── editor.asset.php │ ├── rest-api │ │ └── active-campaign │ │ │ └── active-campaign-route.php │ └── methods │ │ ├── phone-contact-property.php │ │ ├── last-name-contact-property.php │ │ └── first-name-contact-property.php ├── advanced-choices │ ├── assets │ │ └── build │ │ │ ├── editor.asset.php │ │ │ ├── frontend │ │ │ └── choices.field.asset.php │ │ │ └── editor-not-supported.asset.php │ ├── block-parsers │ │ └── choices-field-parser.php │ └── block-types │ │ └── base-choice-item-it.php ├── blocks-v2 │ ├── repeater-field │ │ ├── .eslintrc.js │ │ └── assets │ │ │ └── build │ │ │ ├── frontend.asset.php │ │ │ ├── editor.asset.php │ │ │ └── frontend.css │ ├── text-field │ │ ├── assets │ │ │ └── build │ │ │ │ ├── frontend │ │ │ │ ├── field.asset.php │ │ │ │ ├── field.mask.asset.php │ │ │ │ └── field.css │ │ │ │ ├── editor.asset.php │ │ │ │ └── editor.css │ │ └── .eslintrc.js │ ├── actions-integration │ │ └── assets │ │ │ └── build │ │ │ └── editor.asset.php │ ├── interfaces │ │ ├── block-asset-interface.php │ │ └── block-type-with-assets-interface.php │ └── traits │ │ └── block-type-with-assets-trait.php ├── data │ └── assets │ │ └── build │ │ └── index.asset.php ├── switch-page-on-change │ └── assets │ │ └── build │ │ ├── frontend.asset.php │ │ └── editor.asset.php ├── form-record │ ├── assets │ │ └── build │ │ │ ├── admin │ │ │ └── pages │ │ │ │ ├── jfb-records.asset.php │ │ │ │ ├── record-print.asset.php │ │ │ │ └── jfb-records-single.asset.php │ │ │ └── editor.asset.php │ ├── query-views │ │ ├── record-view-count.php │ │ ├── record-fields-view-count.php │ │ └── record-view-forms.php │ ├── admin │ │ └── view-columns │ │ │ ├── row-actions-column.php │ │ │ ├── header-actions-column.php │ │ │ ├── error-message-column.php │ │ │ ├── exception-name-column.php │ │ │ ├── classes-column.php │ │ │ ├── action-event-column.php │ │ │ └── error-place-column.php │ ├── rest-endpoints │ │ ├── mark-as-viewed-record-endpoint.php │ │ └── mark-as-not-viewed-record-endpoint.php │ └── constraints │ │ └── record-model-constraint.php ├── verification │ ├── assets │ │ └── build │ │ │ ├── admin │ │ │ ├── form-records.asset.php │ │ │ ├── form-record-single.asset.php │ │ │ └── form-records.js │ │ │ └── editor.asset.php │ ├── actions │ │ └── send.email.flow.json │ └── events │ │ ├── verification-failed │ │ └── event.php │ │ └── verification-success │ │ └── event.php ├── components │ └── assets │ │ └── build │ │ └── index.asset.php ├── onboarding │ ├── builders │ │ ├── exceptions │ │ │ └── use-form-exception.php │ │ ├── interfaces │ │ │ ├── builder-create-page-interface.php │ │ │ ├── builder-update-page-interface.php │ │ │ └── builder-interface.php │ │ ├── traits │ │ │ ├── builder-create-page-trait.php │ │ │ └── builder-update-page-trait.php │ │ ├── builder-create-page.php │ │ └── builder-update-page.php │ ├── assets │ │ └── build │ │ │ ├── block.builder.asset.php │ │ │ ├── editor.package.asset.php │ │ │ ├── preview.frontend.asset.php │ │ │ └── editor.asset.php │ └── use-form │ │ ├── assets │ │ └── build │ │ │ └── index.asset.php │ │ └── rest-api │ │ └── use-form-route │ │ └── use-form-route.php ├── ai │ └── assets │ │ └── build │ │ ├── admin │ │ └── forms.asset.php │ │ └── editor.asset.php ├── shortcode │ └── assets │ │ └── build │ │ └── block.editor.asset.php ├── jobs │ ├── interfaces │ │ ├── once-job-it.php │ │ ├── job-logger-it.php │ │ ├── time-based-it.php │ │ ├── recurring-job-it.php │ │ └── self-execution-job-it.php │ ├── traits │ │ ├── self-execution-job-trait.php │ │ └── time-based-trait.php │ └── async-job.php ├── block-parsers │ ├── interfaces │ │ ├── exclude-self-parser.php │ │ └── multiple-parsers.php │ └── fields │ │ ├── default-parser.php │ │ ├── date-field-parser.php │ │ ├── datetime-field-parser.php │ │ └── wysiwyg-field-parser.php ├── logger │ ├── interfaces │ │ └── logger-it.php │ ├── empty-logger.php │ └── error-log-logger.php ├── security │ └── exceptions │ │ └── spam-exception.php ├── user-journey │ ├── query-views │ │ └── user-journey-view-count.php │ ├── user-journey-rest-controller.php │ └── admin │ │ └── view-columns │ │ └── user-journey-query-column.php ├── validation │ ├── advanced-rules │ │ ├── interfaces │ │ │ ├── rule-collect-error-it.php │ │ │ └── rule-field-dependence-it.php │ │ └── traits │ │ │ └── rule-collect-error-trait.php │ ├── post-type │ │ └── validation-meta.php │ └── messages │ │ └── is-empty-value.php ├── cli │ ├── commands │ │ └── base-command-it.php │ └── cli-tools.php ├── post-type │ ├── meta │ │ ├── preset-meta.php │ │ └── actions-meta.php │ └── assets │ │ └── build │ │ └── js │ │ └── import-form.js ├── bulk-options │ ├── interfaces │ │ └── source-resolve-interface.php │ └── sources │ │ └── base.php └── webhook │ └── db │ └── constraints │ └── tokens-model-constraint.php ├── compatibility ├── jet-engine │ ├── blocks │ │ ├── check-mark │ │ │ └── assets │ │ │ │ └── build │ │ │ │ ├── frontend │ │ │ │ ├── main.js │ │ │ │ ├── main.asset.php │ │ │ │ ├── radio.asset.php │ │ │ │ └── checkbox.asset.php │ │ │ │ ├── editor.asset.php │ │ │ │ └── editor.css │ │ └── map-field │ │ │ ├── assets │ │ │ └── build │ │ │ │ ├── frontend │ │ │ │ ├── map.asset.php │ │ │ │ ├── autocomplete.asset.php │ │ │ │ └── map.css │ │ │ │ └── editor.asset.php │ │ │ └── block-render.php │ ├── assets │ │ └── build │ │ │ ├── frontend │ │ │ └── listing.options.asset.php │ │ │ └── editor.asset.php │ ├── compatibility │ │ └── elementor │ │ │ └── check-mark │ │ │ └── widget-attributes.php │ └── preset-sources │ │ └── preset-user.php ├── bricks │ ├── assets │ │ └── build │ │ │ ├── frontend.asset.php │ │ │ ├── editor │ │ │ └── fonts │ │ │ │ ├── JetEngine-widgets.eot │ │ │ │ ├── JetEngine-widgets.ttf │ │ │ │ └── JetEngine-widgets.woff │ │ │ └── block.editor.asset.php │ └── widgets │ │ └── widget-base-it.php ├── woocommerce │ └── assets │ │ └── build │ │ ├── editor.asset.php │ │ └── editor.js ├── jet-booking │ └── assets │ │ └── build │ │ └── frontend.asset.php ├── jet-appointment │ └── assets │ │ └── build │ │ └── frontend.asset.php └── elementor │ ├── assets │ └── build │ │ └── block.editor.asset.php │ └── widgets │ └── widget-base-it.php ├── assets ├── img │ └── image-placeholder.jpg ├── build │ ├── admin │ │ ├── package.asset.php │ │ ├── pages │ │ │ ├── jfb-addons.asset.php │ │ │ └── jfb-settings.asset.php │ │ └── vuex.package.asset.php │ ├── frontend │ │ ├── dynamic.value.asset.php │ │ ├── main.asset.php │ │ ├── media.field.asset.php │ │ ├── multi.step.asset.php │ │ ├── calculated.field.asset.php │ │ ├── conditional.block.asset.php │ │ ├── advanced.reporting.asset.php │ │ └── media.field.restrictions.asset.php │ └── editor │ │ ├── default.builder.asset.php │ │ ├── form.builder.asset.php │ │ └── package.asset.php └── .eslintrc.js ├── templates ├── fields │ ├── heading-field.php │ ├── group-break-field.php │ └── preset-media-field.php └── common │ ├── end-page.php │ ├── messages.php │ ├── field-message.php │ ├── end-form.php │ ├── end-form-row.php │ ├── start-page.php │ └── field-description.php ├── vendor ├── composer │ ├── autoload_psr4.php │ ├── autoload_namespaces.php │ ├── autoload_classmap.php │ └── autoload_static.php └── woocommerce │ └── action-scheduler │ └── classes │ ├── ActionScheduler_Exception.php │ ├── actions │ └── ActionScheduler_FinishedAction.php │ ├── ActionScheduler_NullLogEntry.php │ ├── migration │ └── DryRun_LogMigrator.php │ └── schedules │ └── ActionScheduler_Schedule.php ├── includes ├── admin │ ├── pages │ │ └── interfaces │ │ │ └── page-script-declaration-interface.php │ ├── exceptions │ │ ├── failed-box-update.php │ │ ├── empty-box-exception.php │ │ └── not-found-page-exception.php │ ├── table-views │ │ ├── column-heading-interface.php │ │ ├── column-heading-trait.php │ │ ├── columns │ │ │ ├── record-id-column.php │ │ │ ├── hidden-primary-id-column-trait.php │ │ │ ├── base-header-actions-column.php │ │ │ ├── base-row-actions-column.php │ │ │ ├── record-id-column-advanced.php │ │ │ └── created-at-column.php │ │ ├── view-simple-base.php │ │ ├── view-advanced-base.php │ │ ├── actions │ │ │ └── link-single-action.php │ │ └── column-advanced-base.php │ └── single-pages │ │ ├── meta-containers │ │ ├── side-meta-container.php │ │ └── normal-meta-container.php │ │ └── meta-boxes │ │ ├── meta-box-options.php │ │ ├── meta-table-options.php │ │ └── meta-box-update-callback.php ├── blocks │ ├── native-block-wrapper-attributes.php │ ├── exceptions │ │ ├── condition-exception.php │ │ └── render-empty-field.php │ ├── types │ │ └── form-break-field-style.php │ ├── render │ │ ├── date-field-render.php │ │ ├── number-field-render.php │ │ ├── range-field-render.php │ │ ├── time-field-render.php │ │ ├── datetime-field-render.php │ │ ├── heading-field-render.php │ │ ├── textarea-field-render.php │ │ └── group-break-field-render.php │ ├── default-blocks-repository.php │ ├── modules │ │ └── base-module.php │ ├── conditional-block │ │ ├── condition-response-object.php │ │ ├── operators │ │ │ ├── operator-empty.php │ │ │ ├── operator-equal.php │ │ │ ├── operator-less.php │ │ │ ├── operator-between.php │ │ │ ├── operator-contain.php │ │ │ ├── operator-not-empty.php │ │ │ ├── operator-not-equal.php │ │ │ ├── operator-greater.php │ │ │ ├── operator-in-the-list.php │ │ │ ├── operator-not-between.php │ │ │ ├── operator-not-contain.php │ │ │ ├── operator-not-in-the-list.php │ │ │ ├── operator-less-or-equal.php │ │ │ └── operator-greater-or-equal.php │ │ ├── render-states │ │ │ └── custom-render-state.php │ │ └── condition-types │ │ │ └── or-operator-item.php │ └── button-types │ │ └── button-prev.php ├── exceptions │ ├── action-exception.php │ ├── gateway-exception.php │ ├── preset-exception.php │ ├── invalid-macro-exception.php │ ├── not-router-request.php │ ├── repository-exception.php │ ├── condition-exception.php │ ├── integration-exception.php │ ├── query-builder-exception.php │ ├── silence-exception.php │ ├── condition-silence-exception.php │ ├── plain-default-exception.php │ ├── parse-exception.php │ └── request-exception.php ├── classes │ ├── arrayable │ │ ├── arrayable-once.php │ │ ├── collection-item-interface.php │ │ ├── array-continue-exception.php │ │ └── arrayable.php │ ├── resources │ │ ├── upload-exception.php │ │ ├── has-error-file.php │ │ ├── upload-permission-exception.php │ │ ├── uploaded-file-path.php │ │ ├── sanitize-file-exception.php │ │ └── media-block-value.php │ ├── post │ │ └── not-found-post-exception.php │ ├── get-icon-trait.php │ ├── macro-constants │ │ ├── site-url-constant.php │ │ ├── site-name-constant.php │ │ └── base-constant.php │ ├── filters │ │ ├── embed-url-filter.php │ │ ├── post-url-by-id-filter.php │ │ ├── post-title-by-id-filter.php │ │ ├── file-url-by-id-filter.php │ │ ├── image-url-by-id-filter.php │ │ ├── md5-filter.php │ │ └── term-title-by-id-filter.php │ ├── theme │ │ └── with-theme-info.php │ ├── get-template-trait.php │ └── compatibility.php ├── actions │ ├── events │ │ ├── base-action-event.php │ │ ├── on-dynamic-state │ │ │ └── on-dynamic-state-executor.php │ │ ├── gateway-failed │ │ │ └── gateway-failed-executor.php │ │ ├── bad-request │ │ │ └── bad-request-executor.php │ │ ├── gateway-success │ │ │ └── gateway-success-executor.php │ │ ├── default-required │ │ │ └── default-required-executor.php │ │ └── base-gateway-event.php │ └── methods │ │ ├── object-dynamic-property.php │ │ ├── exceptions │ │ ├── base-method-executed.php │ │ └── modifier-exclude-property.php │ │ └── object-properties-collection.php ├── db-queries │ ├── exceptions │ │ ├── sql-exception.php │ │ └── skip-exception.php │ ├── traits │ │ ├── model-dependencies-interface.php │ │ └── model-dependencies.php │ ├── constraints │ │ ├── form-constraint.php │ │ └── user-constraint.php │ └── views │ │ ├── post-meta-view.php │ │ └── view-custom-table-base.php ├── request │ ├── exceptions │ │ ├── plain-value-exception.php │ │ ├── exclude-field-exception.php │ │ └── sanitize-value-exception.php │ └── form-request-router.php ├── migrations │ ├── profilers │ │ └── base-migration-profiler.php │ └── migration-exception.php └── form-messages │ └── actions │ └── base-action-messages.php └── components ├── repository ├── repository-dynamic-items-it.php ├── repository-static-item-it.php ├── repository-item-instance-trait.php ├── repository-item-with-class.php └── repository-item-dynamic-id.php ├── module ├── base-module-dir-it.php ├── base-module-url-it.php ├── base-module-after-install-it.php ├── base-module-handle-it.php ├── base-module-static-instance-it.php ├── mock-module.php ├── base-module-url-trait.php ├── base-module-dir-trait.php ├── base-module-it.php └── base-module-handle-trait.php ├── admin ├── print-page │ └── interfaces │ │ ├── page-output-it.php │ │ └── page-assets-it.php ├── buttons │ └── legacy │ │ └── base-vui-button.php ├── page │ └── interfaces │ │ └── action-page-it.php ├── notices │ ├── interfaces │ │ └── admin-notices-it.php │ └── traits │ │ └── with-notices-trait.php └── vui-boxes │ └── traits │ └── with-boxes-trait.php ├── wp-nonce ├── wp-nonce-it.php └── wp-nonce-trait.php ├── rest-api ├── traits │ └── rest-fetch-endpoint.php └── interfaces │ └── endpoint-interface.php ├── db └── db-tools.php ├── export ├── interfaces │ ├── base-export-controller-it.php │ └── base-export-it.php └── traits │ └── base-export-controller-trait.php └── compatibility ├── base-compat-url-trait.php ├── base-compat-dir-trait.php └── base-compat-handle-trait.php /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/image-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crocoblock/jetformbuilder/HEAD/assets/img/image-placeholder.jpg -------------------------------------------------------------------------------- /modules/framework/vue-ui/components/tabs-panel.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /templates/fields/heading-field.php: -------------------------------------------------------------------------------- 1 | array('wp-i18n'), 'version' => '99fe468873e64c9eac92'); 2 | -------------------------------------------------------------------------------- /assets/build/admin/pages/jfb-addons.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'bfae07f8ba82cbe1f94d'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/dynamic.value.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'e9a42e0a5a188eaeecfc'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/main.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-i18n'), 'version' => 'a8ff8d24b43df9ed7e99'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/media.field.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'c2abffd620c4660f85df'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/multi.step.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '36b86101cee675ffda25'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | '../../.eslintrc.js', 4 | ], 5 | globals: { 6 | }, 7 | }; -------------------------------------------------------------------------------- /modules/admin/assets/build/go-pro.css: -------------------------------------------------------------------------------- 1 | .jet-fb-go-pro-link{color:#4272f9;font-weight:bold}.jet-fb-go-pro-link:hover{color:#135e96} 2 | -------------------------------------------------------------------------------- /assets/build/frontend/calculated.field.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '6b5a998095272f8f2c36'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/conditional.block.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '5b9582bcf4bbe8a6e3c1'); 2 | -------------------------------------------------------------------------------- /modules/deprecated/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '120e75a68931b79be3f4'); 2 | -------------------------------------------------------------------------------- /modules/framework/vue-ui/assets/js/cx-vue-ui.js: -------------------------------------------------------------------------------- 1 | window.cxVueUi.registerGlobalComponents(Vue),window.cxVueUi.registerGlobalExtensions(); -------------------------------------------------------------------------------- /modules/html-parser/assets/build/parser.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '068ab8b170c6d65bc80c'); 2 | -------------------------------------------------------------------------------- /modules/option-field/assets/build/radio.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '7c6d0d4d7df91e6bd6a4'); 2 | -------------------------------------------------------------------------------- /modules/option-field/assets/build/select.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '0edd78a6f12e2b918b82'); 2 | -------------------------------------------------------------------------------- /modules/promo-banner/assets/build/index.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '1b38af3fde1368c66296'); 2 | -------------------------------------------------------------------------------- /modules/switcher/assets/build/switcher.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '06c887a8b9195e5a119d'); 2 | -------------------------------------------------------------------------------- /modules/wysiwyg/assets/build/wysiwyg.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '5a4d16fb6d7a94700261'); 2 | -------------------------------------------------------------------------------- /assets/build/editor/default.builder.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '3de895e7bb906841e093'); 2 | -------------------------------------------------------------------------------- /compatibility/bricks/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '223249f02ffb577062b5'); 2 | -------------------------------------------------------------------------------- /compatibility/woocommerce/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'e6ec3b15c9bda02b5e79'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '40824e1bb70dc2c7ef6f'); 2 | -------------------------------------------------------------------------------- /modules/gateways/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '5eff2d4b7b6555167783'); 2 | -------------------------------------------------------------------------------- /modules/jet-style/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '856abe8ef84cd5768721'); 2 | -------------------------------------------------------------------------------- /modules/option-field/assets/build/checkbox.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '6e25adbbae5a5d1bb65e'); 2 | -------------------------------------------------------------------------------- /modules/wysiwyg/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '901fd6cc39ed0cadee51'); 2 | -------------------------------------------------------------------------------- /assets/build/admin/pages/jfb-settings.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-i18n'), 'version' => 'a11b422067b5de710e5e'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-booking/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '6eb3a0ab639117abb803'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/hcaptcha/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '508912be45b26e672b90'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/turnstile/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '3a2348c4b69dbbf0ba83'); 2 | -------------------------------------------------------------------------------- /modules/sanitize-value/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '8597eb6996718bc94aed'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/advanced.reporting.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-api-fetch'), 'version' => '8ff3219219229b3acd2f'); 2 | -------------------------------------------------------------------------------- /assets/build/frontend/media.field.restrictions.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-i18n'), 'version' => 'edbabb0dd8297d42715a'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-appointment/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'bad44884ebe52d8c8260'); 2 | -------------------------------------------------------------------------------- /modules/active-campaign/assets/build/admin/jfb-settings.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'f4f35b10d1568f802f0f'); 2 | -------------------------------------------------------------------------------- /modules/advanced-choices/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => 'cd343745619cd9df44a1'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/repeater-field/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | '../../../.eslintrc.js', 4 | ], 5 | globals: { 6 | }, 7 | }; -------------------------------------------------------------------------------- /modules/blocks-v2/repeater-field/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '8e439746e1fc8cd745ae'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/friendly.captcha/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'a7c8be9c428837ed2535'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/re-captcha-v3/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'c6b1f16a6df38db4e1d8'); 2 | -------------------------------------------------------------------------------- /modules/data/assets/build/index.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-data', 'wp-element'), 'version' => '529b7b528fdf9550dad9'); 2 | -------------------------------------------------------------------------------- /modules/gateways/assets/build/admin/pages/jfb-payments.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '110300a2a245a6c96cf9'); 2 | -------------------------------------------------------------------------------- /modules/gateways/assets/build/admin/pages/payment-print.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '497d5777aa642442f3a7'); 2 | -------------------------------------------------------------------------------- /modules/switch-page-on-change/assets/build/frontend.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '37cff6ecfd5e3812f98c'); 2 | -------------------------------------------------------------------------------- /modules/switcher/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-hooks'), 'version' => '58c968ac8a6bc8fae9eb'); 2 | -------------------------------------------------------------------------------- /assets/build/admin/vuex.package.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-api-fetch', 'wp-i18n'), 'version' => '22d5a02ad7e472fca093'); 2 | -------------------------------------------------------------------------------- /modules/advanced-choices/assets/build/frontend/choices.field.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'ca05550a7cac3b9b55a3'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/text-field/assets/build/frontend/field.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '16395ed38b7c1e8808d6'); 2 | -------------------------------------------------------------------------------- /modules/form-record/assets/build/admin/pages/jfb-records.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '9320e2e8fb84b6ea8847'); 2 | -------------------------------------------------------------------------------- /modules/form-record/assets/build/admin/pages/record-print.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'ced58f22a73713d4984e'); 2 | -------------------------------------------------------------------------------- /modules/switch-page-on-change/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '87a0236d83e931909652'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/assets/build/frontend/listing.options.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '3bb89f2cb631d8a1e090'); 2 | -------------------------------------------------------------------------------- /modules/advanced-choices/assets/build/editor-not-supported.asset.php: -------------------------------------------------------------------------------- 1 | array('react'), 'version' => '69d4c2edbf6d391eabf3'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/text-field/assets/build/frontend/field.mask.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '5dafa3c1adff6b2c2df2'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/editor.package.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-i18n'), 'version' => 'd036082aab181bc56cc8'); 2 | -------------------------------------------------------------------------------- /modules/form-record/assets/build/admin/pages/jfb-records-single.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'd6ac79545e3e5d8d063e'); 2 | -------------------------------------------------------------------------------- /modules/gateways/assets/build/admin/pages/jfb-payments-single.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'f1b3e0ce05ec27b49a2b'); 2 | -------------------------------------------------------------------------------- /modules/option-field/assets/build/custom.options.restrictions.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '12a4a3d824bf1ea974d1'); 2 | -------------------------------------------------------------------------------- /modules/verification/assets/build/admin/form-records.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-hooks'), 'version' => 'b0a553bfe6018caf73fe'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/check-mark/assets/build/frontend/main.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => 'ab3a7f1959dd57f9bdeb'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/check-mark/assets/build/frontend/radio.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '9bbd22b94ecad6500714'); 2 | -------------------------------------------------------------------------------- /modules/captcha/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | '../../.eslintrc.js', 4 | ], 5 | globals: { 6 | JFBTextFieldConfig: 'readonly', 7 | }, 8 | }; -------------------------------------------------------------------------------- /modules/form-record/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-data', 'wp-i18n'), 'version' => 'b68e5f61ab05273dd02b'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/check-mark/assets/build/frontend/checkbox.asset.php: -------------------------------------------------------------------------------- 1 | array(), 'version' => '6cfe04cd724e98d9bf33'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/repeater-field/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-hooks'), 'version' => '342632aef3d2d92c6a99'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/map-field/assets/build/frontend/map.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-api-fetch'), 'version' => 'f38a215ec81ea07ac107'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/send-email/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-i18n'), 'version' => '048dcbaf48c4b98ca605'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/text-field/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | '../../../.eslintrc.js', 4 | ], 5 | globals: { 6 | JFBTextFieldConfig: 'readonly', 7 | }, 8 | }; -------------------------------------------------------------------------------- /modules/verification/assets/build/admin/form-record-single.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-api-fetch', 'wp-hooks'), 'version' => 'e835ed99ab937cdafb8f'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/hcaptcha/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-components'), 'version' => '96c00dd424ffb70de989'); 2 | -------------------------------------------------------------------------------- /modules/option-field/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'f4fd1f2ace137340ed0f'); 2 | -------------------------------------------------------------------------------- /compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crocoblock/jetformbuilder/HEAD/compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.eot -------------------------------------------------------------------------------- /compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crocoblock/jetformbuilder/HEAD/compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.ttf -------------------------------------------------------------------------------- /compatibility/jet-engine/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '1bb16349e9a9bf040b06'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/map-field/assets/build/frontend/autocomplete.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-api-fetch', 'wp-url'), 'version' => '1ccb5474b29a16a63502'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/call-hook/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => '7547ff02bbf354170236'); 2 | -------------------------------------------------------------------------------- /modules/blocks-v2/actions-integration/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-block-editor', 'wp-data', 'wp-element'), 'version' => 'fd06b66b33df62721404'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/turnstile/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => 'f219eb1407395fb613a5'); 2 | -------------------------------------------------------------------------------- /modules/components/assets/build/index.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n'), 'version' => 'c86b66b25b0641232f69'); 2 | -------------------------------------------------------------------------------- /compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crocoblock/jetformbuilder/HEAD/compatibility/bricks/assets/build/editor/fonts/JetEngine-widgets.woff -------------------------------------------------------------------------------- /modules/actions-v2/register-user/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => 'e0543b660f497588b0f8'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/re-captcha-v3/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => '83117ed1a3e2977e136d'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/builders/exceptions/use-form-exception.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-i18n', 'wp-primitives'), 'version' => 'a34cc9d9b3230272c5e3'); 2 | -------------------------------------------------------------------------------- /modules/captcha/assets/build/friendly.captcha/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-components', 'wp-i18n'), 'version' => '92755c1f3cfa8f9a5cba'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/assets/build/block.builder.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-i18n', 'wp-primitives'), 'version' => 'fb8c4b014fafc6f9910b'); 2 | -------------------------------------------------------------------------------- /compatibility/elementor/assets/build/block.editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-i18n', 'wp-primitives'), 'version' => '81266898eb36bf024f3b'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/insert-post/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '1d1ad0c446877b832a11'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/insert-term/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => 'db5977f2d6ff29d3060d'); 2 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-compose', 'wp-i18n', 'wp-primitives'), 'version' => '0d499900ccbbe254d6fa'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/update-user/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '17bc64ffe22437b8df69'); 2 | -------------------------------------------------------------------------------- /modules/ai/assets/build/admin/forms.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '55404eac730d6da0c224'); 2 | -------------------------------------------------------------------------------- /templates/common/end-page.php: -------------------------------------------------------------------------------- 1 | '; 11 | -------------------------------------------------------------------------------- /modules/ai/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => '3bf4a59978138d70eae5'); 2 | -------------------------------------------------------------------------------- /modules/html-parser/assets/build/admin-ui.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-dom-ready', 'wp-element', 'wp-i18n'), 'version' => 'ae0b6ce7deed980c99de'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/assets/build/editor.package.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => 'e2a40b1ee8ecfec8462d'); 2 | -------------------------------------------------------------------------------- /modules/verification/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => 'c2b3ec52487ecb227db6'); 2 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '04c25c7639869450381a'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/assets/build/preview.frontend.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '365094521d4249be810d'); 2 | -------------------------------------------------------------------------------- /modules/shortcode/assets/build/block.editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'cf951ad85771cc9ff338'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/map-field/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '7b654799c712d50ca307'); 2 | -------------------------------------------------------------------------------- /compatibility/woocommerce/assets/build/editor.js: -------------------------------------------------------------------------------- 1 | (()=>{const{addFilter:o}=wp.hooks;o("jet.fb.insert.post.modifiers","jet-form-builder/woocommerce-compat",(function(o){return[{id:"product",isSupported:o=>"product"===o.post_type},...o]}))})(); -------------------------------------------------------------------------------- /modules/blocks-v2/text-field/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '332cbc880a2c4b82abdc'); 2 | -------------------------------------------------------------------------------- /assets/build/editor/package.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '441a2a59f6bc265dd39f'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/get-response/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'babb42b30caeadf3b85d'); 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/check-mark/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'ec307247440c11c1a3fc'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-primitives'), 'version' => '8ed33e9fa6a4decd8b68'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/mailchimp/api/interfaces/list-interface.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => '0219c8b379fdedba8117'); 2 | -------------------------------------------------------------------------------- /includes/admin/pages/interfaces/page-script-declaration-interface.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'f13b1fdb6a5a02dfa9af'); 2 | -------------------------------------------------------------------------------- /modules/actions-v2/redirect-to-page/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '2b57611daa740f80d1f8'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/assets/build/editor.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-components', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives'), 'version' => '50283d6669709658064a'); 2 | -------------------------------------------------------------------------------- /modules/onboarding/use-form/assets/build/index.asset.php: -------------------------------------------------------------------------------- 1 | array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '514307281cdc54606b0e'); 2 | -------------------------------------------------------------------------------- /templates/common/messages.php: -------------------------------------------------------------------------------- 1 | %2$s', 10 | esc_attr( $class ), 11 | wp_kses_post( $message_content ) 12 | ); 13 | -------------------------------------------------------------------------------- /templates/common/field-message.php: -------------------------------------------------------------------------------- 1 | %1$s', 10 | wp_kses_post( $message_content ) 11 | ); 12 | -------------------------------------------------------------------------------- /modules/jobs/interfaces/once-job-it.php: -------------------------------------------------------------------------------- 1 | 5 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /compatibility/bricks/widgets/widget-base-it.php: -------------------------------------------------------------------------------- 1 | 5 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /modules/gateways/actions-abstract/action-application-raw-body-it.php: -------------------------------------------------------------------------------- 1 | set_path( 8 | array( 9 | 'list_id' => $list_id, 10 | ) 11 | ); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /modules/blocks-v2/interfaces/block-asset-interface.php: -------------------------------------------------------------------------------- 1 | get_hook(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /modules/security/exceptions/spam-exception.php: -------------------------------------------------------------------------------- 1 | {"use strict";(0,window.wp.hooks.addAction)("jet.fb.render.page","jet-form-builder/verification",(function(e){const[t]=e.$children;t.setActionPromises({action:"verify",promise:t.promiseWrapper((({resolve:e,reject:i})=>{t.apiFetch().then((i=>{t.$store.dispatch("scope-default/fetchPage"),e(i.message)})).catch(i)}))})}))})(); -------------------------------------------------------------------------------- /components/module/base-module-handle-it.php: -------------------------------------------------------------------------------- 1 | get_additional()[0] ?? array(); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/check-mark/assets/build/editor.css: -------------------------------------------------------------------------------- 1 | .hacvl5b{font-size:12px;font-style:normal;color:rgb(117,117,117);margin-top:0} 2 | 3 | .l1qx79ow{font-size:11px;font-weight:500;line-height:1.4;text-transform:uppercase;box-sizing:border-box;display:block;padding-top:0;padding-bottom:0;max-width:100%;z-index:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} 4 | 5 | -------------------------------------------------------------------------------- /components/module/base-module-static-instance-it.php: -------------------------------------------------------------------------------- 1 | get_global_template( 'icons/' ) . $name; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /modules/gateways/scenario-item.php: -------------------------------------------------------------------------------- 1 | title = $title; 11 | } 12 | 13 | public function get_title(): string { 14 | return $this->title; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /includes/admin/table-views/column-heading-trait.php: -------------------------------------------------------------------------------- 1 | $this->get_label(), 16 | ); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /includes/blocks/render/date-field-render.php: -------------------------------------------------------------------------------- 1 | page_id = $page_id; 11 | } 12 | 13 | public function get_page_id(): int { 14 | return $this->page_id; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /components/module/mock-module.php: -------------------------------------------------------------------------------- 1 | `; 5 | } 6 | 7 | /** 8 | * @param blocks {Object[]} 9 | */ 10 | function serialize( blocks ) { 11 | return blocks.map( convertToCommentBlock ).join( '\n\n' ); 12 | } 13 | 14 | export default serialize; -------------------------------------------------------------------------------- /modules/onboarding/builders/interfaces/builder-update-page-interface.php: -------------------------------------------------------------------------------- 1 | 13 |
14 | 15 | 16 | set_namespace( 'jet-form-builder/v1' ); 11 | $this->set_route( 'mailchimp' ); 12 | $this->add_endpoint( new Mailchimp_Endpoint() ); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /modules/advanced-choices/block-parsers/choices-field-parser.php: -------------------------------------------------------------------------------- 1 | add_columns( 15 | array( 16 | 'id' => new Record_Id_Column(), 17 | ) 18 | ); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /includes/classes/macro-constants/site-url-constant.php: -------------------------------------------------------------------------------- 1 | add_attribute( 'class', 'jet-form-builder__group-break' ); 12 | $this->add_attribute( 'class', $args['class_name'] ); 13 | ?> 14 |
15 |
render_attributes_string(); ?>>
16 |
17 | set_namespace( 'jet-form-builder/v1' ); 11 | $this->set_route( 'get-response' ); 12 | $this->add_endpoint( new Get_Response_Endpoint() ); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /modules/cli/commands/base-command-it.php: -------------------------------------------------------------------------------- 1 | timestamp = $time; 17 | } 18 | 19 | public function get_timestamp(): int { 20 | return $this->timestamp; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /modules/onboarding/use-form/rest-api/use-form-route/use-form-route.php: -------------------------------------------------------------------------------- 1 | set_namespace( 'jet-form-builder/v1' ); 11 | $this->set_route( 'use-form/(?P[\d]+)' ); 12 | $this->add_endpoint( new Use_Form_Endpoint() ); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_FinishedAction.php: -------------------------------------------------------------------------------- 1 | hook_key; 15 | } 16 | 17 | public function get_hook_value(): string { 18 | return jet_fb_handler()->hook_val; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /modules/active-campaign/rest-api/active-campaign/active-campaign-route.php: -------------------------------------------------------------------------------- 1 | set_namespace( 'jet-form-builder/v1' ); 11 | $this->set_route( 'active-campaign' ); 12 | $this->add_endpoint( new Active_Campaign_Endpoint() ); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /modules/jobs/interfaces/self-execution-job-it.php: -------------------------------------------------------------------------------- 1 | plugin_url( 15 | 'modules/' . $this->rep_item_id() . '/' . $url 16 | ); 17 | } 18 | 19 | abstract public function rep_item_id(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /includes/blocks/conditional-block/condition-response-object.php: -------------------------------------------------------------------------------- 1 | plugin_dir( 15 | 'modules/' . $this->rep_item_id() . '/' . $path 16 | ); 17 | } 18 | 19 | abstract public function rep_item_id(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /components/module/base-module-it.php: -------------------------------------------------------------------------------- 1 | get_name(), array( 'checkbox-field', 'radio-field' ), true ); 11 | $tag = ( $is_group_type && jet_fb_live_args()->markup_type === 'fieldset' ) ? 'fieldset' : 'div'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited 12 | printf( '', esc_attr( $tag ) ); 13 | -------------------------------------------------------------------------------- /compatibility/jet-engine/preset-sources/preset-user.php: -------------------------------------------------------------------------------- 1 | listings->data->get_queried_user_object(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /components/compatibility/base-compat-url-trait.php: -------------------------------------------------------------------------------- 1 | plugin_url( 15 | 'compatibility/' . $this->rep_item_id() . '/' . $url 16 | ); 17 | } 18 | 19 | abstract public function rep_item_id(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /includes/classes/resources/media-block-value.php: -------------------------------------------------------------------------------- 1 | block_assets; 13 | } 14 | 15 | public function set_assets( Block_Asset_Interface $asset ) { 16 | $this->block_assets = $asset; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /modules/post-type/meta/preset-meta.php: -------------------------------------------------------------------------------- 1 | ', 17 | esc_attr( $hidden_class ), 18 | esc_attr( $this->get_current() ), 19 | absint( $this->get_page_offset() ) 20 | ); 21 | -------------------------------------------------------------------------------- /components/compatibility/base-compat-dir-trait.php: -------------------------------------------------------------------------------- 1 | plugin_dir( 15 | 'compatibility/' . $this->rep_item_id() . '/' . $path 16 | ); 17 | } 18 | 19 | abstract public function rep_item_id(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /includes/classes/filters/post-title-by-id-filter.php: -------------------------------------------------------------------------------- 1 | 5 |
9 | 10 | 11 |
12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /includes/classes/filters/file-url-by-id-filter.php: -------------------------------------------------------------------------------- 1 | wp_nonce; 20 | } 21 | 22 | public function set_wp_nonce( Wp_Nonce $nonce ) { 23 | $this->wp_nonce = $nonce; 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /modules/framework/vue-ui/components/list-table.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
9 | 10 |
11 |
16 | 19 |
-------------------------------------------------------------------------------- /modules/gateways/meta-boxes/columns/city-column.php: -------------------------------------------------------------------------------- 1 | _theme ) { 18 | $this->_theme = new Theme_Info(); 19 | } 20 | 21 | return $this->_theme; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /modules/form-record/rest-endpoints/mark-as-not-viewed-record-endpoint.php: -------------------------------------------------------------------------------- 1 | If this was a mistake, ignore this email and nothing will happen.\n\nTo complete the registration click on the link:\n%_jfb_verification_url%" 9 | }, 10 | "events": [ 11 | "DEFAULT.PROCESS" 12 | ] 13 | } 14 | ] -------------------------------------------------------------------------------- /modules/advanced-choices/block-types/base-choice-item-it.php: -------------------------------------------------------------------------------- 1 | collect_error( 'rule:' . $this->get_id(), $this->get_setting( 'message' ) ); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /includes/blocks/button-types/button-prev.php: -------------------------------------------------------------------------------- 1 | array( 20 | 'button' => 'jet-form-builder__prev-page', 21 | ), 22 | ); 23 | } 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /includes/migrations/profilers/base-migration-profiler.php: -------------------------------------------------------------------------------- 1 | boxes ) { 19 | $this->boxes = new Boxes_Repository(); 20 | } 21 | 22 | return $this->boxes; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /includes/classes/filters/image-url-by-id-filter.php: -------------------------------------------------------------------------------- 1 | version = $version; 17 | 18 | return $this; 19 | } 20 | 21 | public function get_version(): string { 22 | return $this->version; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /modules/gateways/table-views/columns/transaction-column.php: -------------------------------------------------------------------------------- 1 | { 4 | 5 | const { template = '', id = '' } = window.JetFormBuilderImportForm; 6 | 7 | const $newFormButton = $( '.page-title-action' ); 8 | 9 | if ( $newFormButton.length ) { 10 | $newFormButton.after( template ); 11 | } 12 | 13 | $( document ).on( 'click', '#' + id + '-trigger', function () { 14 | $( '#' + id ).css( 'display', 'inline-flex' ); 15 | } ); 16 | }; 17 | 18 | 19 | $( onLoad ); 20 | 21 | } 22 | )( jQuery ); -------------------------------------------------------------------------------- /includes/admin/table-views/columns/base-header-actions-column.php: -------------------------------------------------------------------------------- 1 | show_in_header(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /includes/admin/table-views/columns/base-row-actions-column.php: -------------------------------------------------------------------------------- 1 | show_in_row( $record ); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /includes/admin/table-views/view-simple-base.php: -------------------------------------------------------------------------------- 1 | prepare_list( $custom_list ); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /modules/blocks-v2/text-field/assets/build/frontend/field.css: -------------------------------------------------------------------------------- 1 | .jet-form-builder__field-wrap.has-eye-icon{position:relative}.jet-form-builder__field-wrap.has-eye-icon .jet-form-builder__field{padding-right:34px}.jfb-eye-icon{position:absolute;top:calc(50% - 12px);right:5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;line-height:0}.rtl .jfb-eye-icon{left:5px;right:unset}.jfb-eye-icon .unseen-icon,.jfb-eye-icon .seen-icon{display:none}.jfb-eye-icon.seen .seen-icon{display:block}.jfb-eye-icon:not(.seen) .unseen-icon{display:block} 2 | -------------------------------------------------------------------------------- /compatibility/jet-engine/blocks/map-field/block-render.php: -------------------------------------------------------------------------------- 1 | notices ) { 19 | $this->notices = new Notices_Repository(); 20 | } 21 | 22 | return $this->notices; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /includes/admin/table-views/columns/record-id-column-advanced.php: -------------------------------------------------------------------------------- 1 | set_model( new Core_Post_Model() ); 17 | $this->set_foreign_keys( array( 'form_id' ) ); 18 | $this->on_delete( self::ACTION_CASCADE ); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /includes/db-queries/views/post-meta-view.php: -------------------------------------------------------------------------------- 1 | postmeta; 17 | } 18 | 19 | public function select_columns(): array { 20 | return array( 21 | 'meta_id', 22 | 'post_id', 23 | 'meta_key', 24 | 'meta_value', 25 | ); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /includes/form-messages/actions/base-action-messages.php: -------------------------------------------------------------------------------- 1 | messages(); 21 | } 22 | 23 | 24 | } 25 | -------------------------------------------------------------------------------- /modules/gateways/meta-boxes/columns/payment-amount-column.php: -------------------------------------------------------------------------------- 1 | rep_item_id(), 16 | $unique_string, 17 | ); 18 | 19 | return implode( '-', array_filter( $parts ) ); 20 | } 21 | 22 | abstract public function rep_item_id(); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /includes/admin/single-pages/meta-boxes/meta-table-options.php: -------------------------------------------------------------------------------- 1 | rep_item_id(), 16 | $unique_string, 17 | ); 18 | 19 | return implode( '-', array_filter( $parts ) ); 20 | } 21 | 22 | abstract public function rep_item_id(); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /includes/classes/compatibility.php: -------------------------------------------------------------------------------- 1 | value ); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /modules/form-record/admin/view-columns/classes-column.php: -------------------------------------------------------------------------------- 1 | empty( $record['is_viewed'] ), 20 | ); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /modules/sanitize-value/interfaces/value-sanitizer-it.php: -------------------------------------------------------------------------------- 1 | prepare_list( $custom_list ); 19 | } 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /modules/actions-v2/insert-post/properties/post-date-property.php: -------------------------------------------------------------------------------- 1 | "DISTINCT {$this->column( 'form_id' )}", 22 | ), 23 | ); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /modules/sanitize-value/traits/number-sanitizer-trait.php: -------------------------------------------------------------------------------- 1 | get_value() ) ) { 17 | $parser->set_value( 0 ); 18 | 19 | return; 20 | } 21 | 22 | $this->do_number_sanitize( $parser ); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /modules/validation/post-type/validation-meta.php: -------------------------------------------------------------------------------- 1 | 16 | 21 | get_href( $record ); 18 | 19 | return $attrs; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /includes/classes/macro-constants/base-constant.php: -------------------------------------------------------------------------------- 1 | get_id(); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /modules/actions-v2/insert-post/properties/post-author-property.php: -------------------------------------------------------------------------------- 1 | exporter = $exporter; 19 | } 20 | 21 | public function get_exporter(): Interfaces\Base_Export_It { 22 | return $this->exporter; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /includes/classes/filters/md5-filter.php: -------------------------------------------------------------------------------- 1 | $this->get_gateway(), 20 | 'scenario' => $this->get_scenario(), 21 | ); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /includes/blocks/conditional-block/operators/operator-empty.php: -------------------------------------------------------------------------------- 1 | state_id; 20 | } 21 | 22 | 23 | public function set_id( string $state_id ) { 24 | $this->state_id = $state_id; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /includes/exceptions/request-exception.php: -------------------------------------------------------------------------------- 1 | errors = isset( $errors[0] ) ? $errors[0] : false; 17 | 18 | parent::__construct( $message, ...$errors ); 19 | } 20 | 21 | public function get_fields_errors() { 22 | return $this->errors; 23 | } 24 | 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /modules/active-campaign/methods/phone-contact-property.php: -------------------------------------------------------------------------------- 1 | get_dependencies() as $model ) { 24 | $model->create(); 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /modules/active-campaign/methods/last-name-contact-property.php: -------------------------------------------------------------------------------- 1 | 'first_option', 11 | 'label' => __( 'First Option', 'jet-form-builder' ), 12 | 'calculate' => 1, 13 | ), 14 | array( 15 | 'value' => 'second_option', 16 | 'label' => __( 'Second Option', 'jet-form-builder' ), 17 | 'calculate' => 2, 18 | ), 19 | array( 20 | 'value' => 'third_option', 21 | 'label' => __( 'Third Option', 'jet-form-builder' ), 22 | 'calculate' => 3, 23 | ), 24 | ); 25 | -------------------------------------------------------------------------------- /modules/captcha/abstract-captcha/captcha-settings-from-options.php: -------------------------------------------------------------------------------- 1 | Settings page 16 | */ 17 | public function on_save_options( array $post_request ): array; 18 | 19 | /** 20 | * Runs when the JetFormBuilder -> Settings page is loaded 21 | */ 22 | public function on_load_options(): array; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /includes/blocks/conditional-block/operators/operator-greater.php: -------------------------------------------------------------------------------- 1 | set_model( new Core_User_Model() ); 18 | $this->set_foreign_keys( array( 'user_id' ) ); 19 | $this->on_delete( self::ACTION_CASCADE ); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /modules/deprecated/assets/build/frontend.js: -------------------------------------------------------------------------------- 1 | (()=>{var e;window.JetFormBuilderMain={filters:(e={},{addFilter:function(r,t){Boolean(window.JetFormBuilderSettings.devmode)&&console.warn("This method is deprecated since JetFormBuilder 3.0.0. \nUse JetPlugins.hooks.addFilter instead."),e.hasOwnProperty(r)||(e[r]=[]),e[r].push(t)},applyFilters:function(r,t,i){if(!e.hasOwnProperty(r))return t;void 0===i&&(i=[]);for(var n=e[r],o=n.length,l=0;lset_model( new Tokens_Model() ); 18 | $this->set_foreign_keys( array( 'token_id' ) ); 19 | $this->on_delete( self::ACTION_CASCADE ); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /includes/db-queries/views/view-custom-table-base.php: -------------------------------------------------------------------------------- 1 | prefix; 22 | } 23 | 24 | public function table(): string { 25 | return $this->table_prefix() . $this->table_name(); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /modules/form-record/constraints/record-model-constraint.php: -------------------------------------------------------------------------------- 1 | set_model( new Record_Model() ); 18 | $this->set_foreign_keys( array( 'record_id' ) ); 19 | $this->on_delete( self::ACTION_CASCADE ); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /includes/admin/table-views/columns/created-at-column.php: -------------------------------------------------------------------------------- 1 | name; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /modules/actions-v2/get-response/api/get-lists-action.php: -------------------------------------------------------------------------------- 1 | get_response_body(); 18 | 19 | foreach ( $response as $list ) { 20 | yield array( 21 | 'value' => $list['campaignId'], 22 | 'label' => $list['name'], 23 | ); 24 | } 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /vendor/woocommerce/action-scheduler/classes/migration/DryRun_LogMigrator.php: -------------------------------------------------------------------------------- 1 | set_model( new Payer_Model() ); 18 | $this->set_foreign_keys( array( 'payer_id' ) ); 19 | $this->on_delete( self::ACTION_CASCADE ); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /includes/blocks/conditional-block/condition-types/or-operator-item.php: -------------------------------------------------------------------------------- 1 | base = $condition; 19 | } 20 | 21 | public function to_array(): array { 22 | return $this->base; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /includes/blocks/conditional-block/operators/operator-less-or-equal.php: -------------------------------------------------------------------------------- 1 | {const e=JetFBPluginConfig.slug,t="modal-"+e,o=document.querySelector("#"+t),l=o.querySelector(".jet-form-builder-modal-exit"),r=o.querySelector(".button.close"),c=o.querySelector(".button.continue");let n="";o.addEventListener("click",(e=>{[r,l].includes(e.target)?o.classList.remove("open"):c===e.target&&(window.location=n)})),document.querySelector("#bulk-action-form").addEventListener("click",(function(t){"A"===t.target.nodeName&&t.target?.id?.includes?.("deactivate-")&&t.target.closest(`tr.active[data-slug="${e}"]`)&&(t.preventDefault(),n=t.target.href,o.style.display="flex",o.classList.add("open"))}))})(); -------------------------------------------------------------------------------- /modules/html-parser/admin/index.js: -------------------------------------------------------------------------------- 1 | import { createRoot } from '@wordpress/element'; 2 | import domReady from '@wordpress/dom-ready'; 3 | import HtmlParserButton from './HtmlParserButton'; 4 | 5 | domReady( () => { 6 | const target = document.querySelector( '.page-title-action[href*="post-new.php"]' ); 7 | 8 | if ( ! target ) { 9 | return; 10 | } 11 | 12 | const container = document.createElement( 'div' ); 13 | container.style.display = 'inline-flex'; 14 | container.style.marginLeft = '4px'; 15 | 16 | target.after( container ); 17 | createRoot( container ).render( 18 | wp.element.createElement( HtmlParserButton ) 19 | ); 20 | } ); -------------------------------------------------------------------------------- /modules/form-record/admin/view-columns/error-place-column.php: -------------------------------------------------------------------------------- 1 | set_model( new Payment_Model() ); 18 | $this->set_foreign_keys( array( 'payment_id' ) ); 19 | $this->on_delete( self::ACTION_CASCADE ); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /templates/common/field-description.php: -------------------------------------------------------------------------------- 1 | %2$s'; 14 | } else { 15 | $class = 'jet-form-builder__desc'; 16 | $format = '
%2$s
'; 17 | } 18 | 19 | // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 20 | printf( $format, esc_attr( $class ), wp_kses_post( $args['desc'] ) ); 21 | -------------------------------------------------------------------------------- /includes/admin/table-views/column-advanced-base.php: -------------------------------------------------------------------------------- 1 | use_label = $use_label; 19 | 20 | return $this; 21 | } 22 | 23 | public function has_label(): bool { 24 | return $this->use_label; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /modules/jobs/async-job.php: -------------------------------------------------------------------------------- 1 | get_hook(), 26 | $this->get_args(), 27 | \JFB_Modules\Post_Type\Module::SLUG 28 | ); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /includes/admin/single-pages/meta-boxes/meta-box-update-callback.php: -------------------------------------------------------------------------------- 1 | email_address = $email_address; 13 | 14 | $this->set_path( 15 | array( 16 | 'email_md5' => md5( strtolower( $this->get_email_address() ) ), 17 | ) 18 | ); 19 | } 20 | 21 | 22 | /** 23 | * @return string 24 | */ 25 | public function get_email_address(): string { 26 | return $this->email_address; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /modules/gateways/paypal/scenarios-logic/with-resource-it.php: -------------------------------------------------------------------------------- 1 | 1, 24 | 'post_type' => jet_form_builder()->post_type->slug(), 25 | ) 26 | ); 27 | 28 | return $form; 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /modules/gateways/table-views/columns/row-actions-column.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/..' . '/composer/InstalledVersions.php', 11 | ); 12 | 13 | public static function getInitializer(ClassLoader $loader) 14 | { 15 | return \Closure::bind(function () use ($loader) { 16 | $loader->classMap = ComposerStaticInit7b3df49a916ab03743bf74be22edb696::$classMap; 17 | 18 | }, null, ClassLoader::class); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /includes/actions/methods/object-properties-collection.php: -------------------------------------------------------------------------------- 1 |