From d751727c39f258d57fdf876c513e3490c9debc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Ru=C5=BEevi=C4=87?= Date: Thu, 13 Jul 2023 11:28:06 +0200 Subject: [PATCH] Feature/forms (#242) * adding new forms docs --- website/forms/javascript/examples.md | 6 + website/forms/javascript/intro.md | 6 + website/forms/javascript/manual-initiation.md | 6 + .../javascript/window/conditional-tags.md | 6 + website/forms/javascript/window/enrichment.md | 6 + .../forms/javascript/{ => window}/events.md | 0 website/forms/javascript/window/form.md | 6 + website/forms/javascript/window/state.md | 6 + website/forms/javascript/window/step.md | 6 + website/forms/javascript/window/store.md | 6 + website/forms/javascript/window/utils.md | 6 + website/forms/php/filters.md | 6 - website/forms/php/filters/block/checkboxes.md | 6 + website/forms/php/filters/block/country.md | 6 + .../forms/php/filters/block/custom-data.md | 6 + website/forms/php/filters/block/date.md | 6 + website/forms/php/filters/block/field.md | 6 + website/forms/php/filters/block/file.md | 6 + .../forms/php/filters/block/form-selector.md | 6 + website/forms/php/filters/block/form.md | 6 + website/forms/php/filters/block/forms.md | 6 + website/forms/php/filters/block/input.md | 6 + website/forms/php/filters/block/phone.md | 6 + website/forms/php/filters/block/radios.md | 6 + website/forms/php/filters/block/select.md | 6 + website/forms/php/filters/block/step.md | 6 + website/forms/php/filters/block/submit.md | 6 + website/forms/php/filters/block/textarea.md | 6 + .../php/filters/blocks/additional-blocks.md | 6 + .../php/filters/blocks/media-breakpoints.md | 6 + .../php/filters/enrichment/manual-map.md | 6 + .../filters/general/http-request-timeout.md | 6 + .../forms/php/filters/general/set-locale.md | 6 + .../php/filters/geolocation/cookie-name.md | 6 + .../php/filters/geolocation/countries.md | 6 + .../php/filters/geolocation/db-location.md | 6 + .../forms/php/filters/geolocation/disable.md | 6 + .../php/filters/geolocation/phar-location.md | 6 + .../geolocation/wp-rocket-advanced-cache.md | 6 + .../filters/integrations/active-campaign.md | 6 + .../php/filters/integrations/airtable.md | 6 + .../php/filters/integrations/clearbit.md | 6 + .../php/filters/integrations/goodbits.md | 6 + .../php/filters/integrations/greenhouse.md | 6 + .../forms/php/filters/integrations/hubspot.md | 6 + .../forms/php/filters/integrations/jira.md | 6 + .../php/filters/integrations/mailchimp.md | 6 + .../forms/php/filters/integrations/mailer.md | 6 + .../php/filters/integrations/mailerlite.md | 6 + .../forms/php/filters/integrations/moments.md | 6 + .../php/filters/integrations/workable.md | 6 + website/forms/php/filters/intro.md | 6 + .../php/filters/troubleshooting/output-log.md | 6 + ...mimetype-validation-when-file-not-on-fs.md | 6 + website/forms/php/global-variables.md | 6 - .../php/global-variables/active-campaign.md | 6 + .../forms/php/global-variables/airtable.md | 6 + .../forms/php/global-variables/clearbit.md | 6 + .../forms/php/global-variables/geolocation.md | 6 + .../forms/php/global-variables/goodbits.md | 6 + .../php/global-variables/google-recaptcha.md | 6 + .../forms/php/global-variables/greenhouse.md | 6 + website/forms/php/global-variables/hubspot.md | 6 + website/forms/php/global-variables/intro.md | 6 + website/forms/php/global-variables/jira.md | 6 + .../forms/php/global-variables/mailchimp.md | 6 + .../forms/php/global-variables/mailerlite.md | 6 + website/forms/php/global-variables/moments.md | 6 + .../forms/php/global-variables/workable.md | 6 + website/sidebars-forms.js | 134 +++++++++++++++++- website/src/theme/sections/os-projects.jsx | 12 +- 71 files changed, 533 insertions(+), 21 deletions(-) create mode 100644 website/forms/javascript/examples.md create mode 100644 website/forms/javascript/intro.md create mode 100644 website/forms/javascript/manual-initiation.md create mode 100644 website/forms/javascript/window/conditional-tags.md create mode 100644 website/forms/javascript/window/enrichment.md rename website/forms/javascript/{ => window}/events.md (100%) create mode 100644 website/forms/javascript/window/form.md create mode 100644 website/forms/javascript/window/state.md create mode 100644 website/forms/javascript/window/step.md create mode 100644 website/forms/javascript/window/store.md create mode 100644 website/forms/javascript/window/utils.md delete mode 100644 website/forms/php/filters.md create mode 100644 website/forms/php/filters/block/checkboxes.md create mode 100644 website/forms/php/filters/block/country.md create mode 100644 website/forms/php/filters/block/custom-data.md create mode 100644 website/forms/php/filters/block/date.md create mode 100644 website/forms/php/filters/block/field.md create mode 100644 website/forms/php/filters/block/file.md create mode 100644 website/forms/php/filters/block/form-selector.md create mode 100644 website/forms/php/filters/block/form.md create mode 100644 website/forms/php/filters/block/forms.md create mode 100644 website/forms/php/filters/block/input.md create mode 100644 website/forms/php/filters/block/phone.md create mode 100644 website/forms/php/filters/block/radios.md create mode 100644 website/forms/php/filters/block/select.md create mode 100644 website/forms/php/filters/block/step.md create mode 100644 website/forms/php/filters/block/submit.md create mode 100644 website/forms/php/filters/block/textarea.md create mode 100644 website/forms/php/filters/blocks/additional-blocks.md create mode 100644 website/forms/php/filters/blocks/media-breakpoints.md create mode 100644 website/forms/php/filters/enrichment/manual-map.md create mode 100644 website/forms/php/filters/general/http-request-timeout.md create mode 100644 website/forms/php/filters/general/set-locale.md create mode 100644 website/forms/php/filters/geolocation/cookie-name.md create mode 100644 website/forms/php/filters/geolocation/countries.md create mode 100644 website/forms/php/filters/geolocation/db-location.md create mode 100644 website/forms/php/filters/geolocation/disable.md create mode 100644 website/forms/php/filters/geolocation/phar-location.md create mode 100644 website/forms/php/filters/geolocation/wp-rocket-advanced-cache.md create mode 100644 website/forms/php/filters/integrations/active-campaign.md create mode 100644 website/forms/php/filters/integrations/airtable.md create mode 100644 website/forms/php/filters/integrations/clearbit.md create mode 100644 website/forms/php/filters/integrations/goodbits.md create mode 100644 website/forms/php/filters/integrations/greenhouse.md create mode 100644 website/forms/php/filters/integrations/hubspot.md create mode 100644 website/forms/php/filters/integrations/jira.md create mode 100644 website/forms/php/filters/integrations/mailchimp.md create mode 100644 website/forms/php/filters/integrations/mailer.md create mode 100644 website/forms/php/filters/integrations/mailerlite.md create mode 100644 website/forms/php/filters/integrations/moments.md create mode 100644 website/forms/php/filters/integrations/workable.md create mode 100644 website/forms/php/filters/intro.md create mode 100644 website/forms/php/filters/troubleshooting/output-log.md create mode 100644 website/forms/php/filters/validation/fail-mimetype-validation-when-file-not-on-fs.md delete mode 100644 website/forms/php/global-variables.md create mode 100644 website/forms/php/global-variables/active-campaign.md create mode 100644 website/forms/php/global-variables/airtable.md create mode 100644 website/forms/php/global-variables/clearbit.md create mode 100644 website/forms/php/global-variables/geolocation.md create mode 100644 website/forms/php/global-variables/goodbits.md create mode 100644 website/forms/php/global-variables/google-recaptcha.md create mode 100644 website/forms/php/global-variables/greenhouse.md create mode 100644 website/forms/php/global-variables/hubspot.md create mode 100644 website/forms/php/global-variables/intro.md create mode 100644 website/forms/php/global-variables/jira.md create mode 100644 website/forms/php/global-variables/mailchimp.md create mode 100644 website/forms/php/global-variables/mailerlite.md create mode 100644 website/forms/php/global-variables/moments.md create mode 100644 website/forms/php/global-variables/workable.md diff --git a/website/forms/javascript/examples.md b/website/forms/javascript/examples.md new file mode 100644 index 000000000..3e51e3da1 --- /dev/null +++ b/website/forms/javascript/examples.md @@ -0,0 +1,6 @@ +--- +id: examples +title: Examples +--- + +*Coming soon* diff --git a/website/forms/javascript/intro.md b/website/forms/javascript/intro.md new file mode 100644 index 000000000..c95365bc5 --- /dev/null +++ b/website/forms/javascript/intro.md @@ -0,0 +1,6 @@ +--- +id: intro +title: Intro +--- + +*Coming soon* diff --git a/website/forms/javascript/manual-initiation.md b/website/forms/javascript/manual-initiation.md new file mode 100644 index 000000000..f91ed048f --- /dev/null +++ b/website/forms/javascript/manual-initiation.md @@ -0,0 +1,6 @@ +--- +id: manual-initiation +title: Manual initiation +--- + +*Coming soon* diff --git a/website/forms/javascript/window/conditional-tags.md b/website/forms/javascript/window/conditional-tags.md new file mode 100644 index 000000000..2cae039a8 --- /dev/null +++ b/website/forms/javascript/window/conditional-tags.md @@ -0,0 +1,6 @@ +--- +id: conditional-tags +title: Conditional tags +--- + +*Coming soon* diff --git a/website/forms/javascript/window/enrichment.md b/website/forms/javascript/window/enrichment.md new file mode 100644 index 000000000..af528b762 --- /dev/null +++ b/website/forms/javascript/window/enrichment.md @@ -0,0 +1,6 @@ +--- +id: enrichment +title: Enrichment +--- + +*Coming soon* diff --git a/website/forms/javascript/events.md b/website/forms/javascript/window/events.md similarity index 100% rename from website/forms/javascript/events.md rename to website/forms/javascript/window/events.md diff --git a/website/forms/javascript/window/form.md b/website/forms/javascript/window/form.md new file mode 100644 index 000000000..151ca0dcd --- /dev/null +++ b/website/forms/javascript/window/form.md @@ -0,0 +1,6 @@ +--- +id: form +title: Form +--- + +*Coming soon* diff --git a/website/forms/javascript/window/state.md b/website/forms/javascript/window/state.md new file mode 100644 index 000000000..21276cf6f --- /dev/null +++ b/website/forms/javascript/window/state.md @@ -0,0 +1,6 @@ +--- +id: state +title: State +--- + +*Coming soon* diff --git a/website/forms/javascript/window/step.md b/website/forms/javascript/window/step.md new file mode 100644 index 000000000..4001c6455 --- /dev/null +++ b/website/forms/javascript/window/step.md @@ -0,0 +1,6 @@ +--- +id: step +title: Step +--- + +*Coming soon* diff --git a/website/forms/javascript/window/store.md b/website/forms/javascript/window/store.md new file mode 100644 index 000000000..06832f527 --- /dev/null +++ b/website/forms/javascript/window/store.md @@ -0,0 +1,6 @@ +--- +id: store +title: Store +--- + +*Coming soon* diff --git a/website/forms/javascript/window/utils.md b/website/forms/javascript/window/utils.md new file mode 100644 index 000000000..8db2c6950 --- /dev/null +++ b/website/forms/javascript/window/utils.md @@ -0,0 +1,6 @@ +--- +id: utils +title: Utils +--- + +*Coming soon* diff --git a/website/forms/php/filters.md b/website/forms/php/filters.md deleted file mode 100644 index a6038ec0f..000000000 --- a/website/forms/php/filters.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -id: filters -title: Filters ---- - -*Coming soon* diff --git a/website/forms/php/filters/block/checkboxes.md b/website/forms/php/filters/block/checkboxes.md new file mode 100644 index 000000000..664d41d97 --- /dev/null +++ b/website/forms/php/filters/block/checkboxes.md @@ -0,0 +1,6 @@ +--- +id: checkboxes +title: Checkboxes +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/country.md b/website/forms/php/filters/block/country.md new file mode 100644 index 000000000..b0cae3bbe --- /dev/null +++ b/website/forms/php/filters/block/country.md @@ -0,0 +1,6 @@ +--- +id: country +title: Country +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/custom-data.md b/website/forms/php/filters/block/custom-data.md new file mode 100644 index 000000000..57fb09274 --- /dev/null +++ b/website/forms/php/filters/block/custom-data.md @@ -0,0 +1,6 @@ +--- +id: custom-data +title: Custom data +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/date.md b/website/forms/php/filters/block/date.md new file mode 100644 index 000000000..bd48f6cd8 --- /dev/null +++ b/website/forms/php/filters/block/date.md @@ -0,0 +1,6 @@ +--- +id: date +title: Date +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/field.md b/website/forms/php/filters/block/field.md new file mode 100644 index 000000000..3aa973af5 --- /dev/null +++ b/website/forms/php/filters/block/field.md @@ -0,0 +1,6 @@ +--- +id: field +title: Field +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/file.md b/website/forms/php/filters/block/file.md new file mode 100644 index 000000000..9e046ed8b --- /dev/null +++ b/website/forms/php/filters/block/file.md @@ -0,0 +1,6 @@ +--- +id: file +title: File +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/form-selector.md b/website/forms/php/filters/block/form-selector.md new file mode 100644 index 000000000..aaef6fd12 --- /dev/null +++ b/website/forms/php/filters/block/form-selector.md @@ -0,0 +1,6 @@ +--- +id: form-selector +title: Form selector +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/form.md b/website/forms/php/filters/block/form.md new file mode 100644 index 000000000..151ca0dcd --- /dev/null +++ b/website/forms/php/filters/block/form.md @@ -0,0 +1,6 @@ +--- +id: form +title: Form +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/forms.md b/website/forms/php/filters/block/forms.md new file mode 100644 index 000000000..393f532a4 --- /dev/null +++ b/website/forms/php/filters/block/forms.md @@ -0,0 +1,6 @@ +--- +id: forms +title: Forms +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/input.md b/website/forms/php/filters/block/input.md new file mode 100644 index 000000000..80a7f78fa --- /dev/null +++ b/website/forms/php/filters/block/input.md @@ -0,0 +1,6 @@ +--- +id: input +title: Input +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/phone.md b/website/forms/php/filters/block/phone.md new file mode 100644 index 000000000..ce8848ca8 --- /dev/null +++ b/website/forms/php/filters/block/phone.md @@ -0,0 +1,6 @@ +--- +id: phone +title: Phone +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/radios.md b/website/forms/php/filters/block/radios.md new file mode 100644 index 000000000..90b72762c --- /dev/null +++ b/website/forms/php/filters/block/radios.md @@ -0,0 +1,6 @@ +--- +id: radios +title: Radios +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/select.md b/website/forms/php/filters/block/select.md new file mode 100644 index 000000000..9dbb010de --- /dev/null +++ b/website/forms/php/filters/block/select.md @@ -0,0 +1,6 @@ +--- +id: select +title: Select +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/step.md b/website/forms/php/filters/block/step.md new file mode 100644 index 000000000..4001c6455 --- /dev/null +++ b/website/forms/php/filters/block/step.md @@ -0,0 +1,6 @@ +--- +id: step +title: Step +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/submit.md b/website/forms/php/filters/block/submit.md new file mode 100644 index 000000000..4ae8f86a6 --- /dev/null +++ b/website/forms/php/filters/block/submit.md @@ -0,0 +1,6 @@ +--- +id: submit +title: Submit +--- + +*Coming soon* diff --git a/website/forms/php/filters/block/textarea.md b/website/forms/php/filters/block/textarea.md new file mode 100644 index 000000000..7f2742445 --- /dev/null +++ b/website/forms/php/filters/block/textarea.md @@ -0,0 +1,6 @@ +--- +id: textarea +title: Textarea +--- + +*Coming soon* diff --git a/website/forms/php/filters/blocks/additional-blocks.md b/website/forms/php/filters/blocks/additional-blocks.md new file mode 100644 index 000000000..5edd54ffd --- /dev/null +++ b/website/forms/php/filters/blocks/additional-blocks.md @@ -0,0 +1,6 @@ +--- +id: additional-blocks +title: Additional blocks +--- + +*Coming soon* diff --git a/website/forms/php/filters/blocks/media-breakpoints.md b/website/forms/php/filters/blocks/media-breakpoints.md new file mode 100644 index 000000000..96d45fe18 --- /dev/null +++ b/website/forms/php/filters/blocks/media-breakpoints.md @@ -0,0 +1,6 @@ +--- +id: media-breakpoints +title: Media breakpoints +--- + +*Coming soon* diff --git a/website/forms/php/filters/enrichment/manual-map.md b/website/forms/php/filters/enrichment/manual-map.md new file mode 100644 index 000000000..883b0ff7a --- /dev/null +++ b/website/forms/php/filters/enrichment/manual-map.md @@ -0,0 +1,6 @@ +--- +id: manual-map +title: Manual map +--- + +*Coming soon* diff --git a/website/forms/php/filters/general/http-request-timeout.md b/website/forms/php/filters/general/http-request-timeout.md new file mode 100644 index 000000000..c31e8543d --- /dev/null +++ b/website/forms/php/filters/general/http-request-timeout.md @@ -0,0 +1,6 @@ +--- +id: http-request-timeout +title: Http request timeout +--- + +*Coming soon* diff --git a/website/forms/php/filters/general/set-locale.md b/website/forms/php/filters/general/set-locale.md new file mode 100644 index 000000000..d94d87c88 --- /dev/null +++ b/website/forms/php/filters/general/set-locale.md @@ -0,0 +1,6 @@ +--- +id: set-locale +title: Set locale +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/cookie-name.md b/website/forms/php/filters/geolocation/cookie-name.md new file mode 100644 index 000000000..48a3d3244 --- /dev/null +++ b/website/forms/php/filters/geolocation/cookie-name.md @@ -0,0 +1,6 @@ +--- +id: cookie-name +title: Cookie name +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/countries.md b/website/forms/php/filters/geolocation/countries.md new file mode 100644 index 000000000..6bf575f17 --- /dev/null +++ b/website/forms/php/filters/geolocation/countries.md @@ -0,0 +1,6 @@ +--- +id: countries +title: Countries +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/db-location.md b/website/forms/php/filters/geolocation/db-location.md new file mode 100644 index 000000000..6a7da19b3 --- /dev/null +++ b/website/forms/php/filters/geolocation/db-location.md @@ -0,0 +1,6 @@ +--- +id: db-location +title: DB location +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/disable.md b/website/forms/php/filters/geolocation/disable.md new file mode 100644 index 000000000..2fc36b540 --- /dev/null +++ b/website/forms/php/filters/geolocation/disable.md @@ -0,0 +1,6 @@ +--- +id: disable +title: Disable +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/phar-location.md b/website/forms/php/filters/geolocation/phar-location.md new file mode 100644 index 000000000..f3321affe --- /dev/null +++ b/website/forms/php/filters/geolocation/phar-location.md @@ -0,0 +1,6 @@ +--- +id: phar-location +title: Phar location +--- + +*Coming soon* diff --git a/website/forms/php/filters/geolocation/wp-rocket-advanced-cache.md b/website/forms/php/filters/geolocation/wp-rocket-advanced-cache.md new file mode 100644 index 000000000..3bc6bad99 --- /dev/null +++ b/website/forms/php/filters/geolocation/wp-rocket-advanced-cache.md @@ -0,0 +1,6 @@ +--- +id: wp-rocket-advanced-cache +title: WpRocket advanced cache +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/active-campaign.md b/website/forms/php/filters/integrations/active-campaign.md new file mode 100644 index 000000000..f783af2d4 --- /dev/null +++ b/website/forms/php/filters/integrations/active-campaign.md @@ -0,0 +1,6 @@ +--- +id: active-campaign +title: ActiveCampaign +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/airtable.md b/website/forms/php/filters/integrations/airtable.md new file mode 100644 index 000000000..5386ea0fc --- /dev/null +++ b/website/forms/php/filters/integrations/airtable.md @@ -0,0 +1,6 @@ +--- +id: airtable +title: Airtable +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/clearbit.md b/website/forms/php/filters/integrations/clearbit.md new file mode 100644 index 000000000..c1a5a69c9 --- /dev/null +++ b/website/forms/php/filters/integrations/clearbit.md @@ -0,0 +1,6 @@ +--- +id: clearbit +title: Clearbit +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/goodbits.md b/website/forms/php/filters/integrations/goodbits.md new file mode 100644 index 000000000..68773c5b3 --- /dev/null +++ b/website/forms/php/filters/integrations/goodbits.md @@ -0,0 +1,6 @@ +--- +id: goodbits +title: Goodbits +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/greenhouse.md b/website/forms/php/filters/integrations/greenhouse.md new file mode 100644 index 000000000..9329f43a6 --- /dev/null +++ b/website/forms/php/filters/integrations/greenhouse.md @@ -0,0 +1,6 @@ +--- +id: greenhouse +title: Greenhouse +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/hubspot.md b/website/forms/php/filters/integrations/hubspot.md new file mode 100644 index 000000000..8d25931c3 --- /dev/null +++ b/website/forms/php/filters/integrations/hubspot.md @@ -0,0 +1,6 @@ +--- +id: hubspot +title: Hubspot +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/jira.md b/website/forms/php/filters/integrations/jira.md new file mode 100644 index 000000000..07833b819 --- /dev/null +++ b/website/forms/php/filters/integrations/jira.md @@ -0,0 +1,6 @@ +--- +id: jira +title: Jira +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/mailchimp.md b/website/forms/php/filters/integrations/mailchimp.md new file mode 100644 index 000000000..b904a69da --- /dev/null +++ b/website/forms/php/filters/integrations/mailchimp.md @@ -0,0 +1,6 @@ +--- +id: mailchimp +title: Mailchimp +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/mailer.md b/website/forms/php/filters/integrations/mailer.md new file mode 100644 index 000000000..50c4e5ac0 --- /dev/null +++ b/website/forms/php/filters/integrations/mailer.md @@ -0,0 +1,6 @@ +--- +id: mailer +title: Mailer +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/mailerlite.md b/website/forms/php/filters/integrations/mailerlite.md new file mode 100644 index 000000000..c101ef83e --- /dev/null +++ b/website/forms/php/filters/integrations/mailerlite.md @@ -0,0 +1,6 @@ +--- +id: mailerlite +title: MailerLite +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/moments.md b/website/forms/php/filters/integrations/moments.md new file mode 100644 index 000000000..994383408 --- /dev/null +++ b/website/forms/php/filters/integrations/moments.md @@ -0,0 +1,6 @@ +--- +id: moments +title: Moments +--- + +*Coming soon* diff --git a/website/forms/php/filters/integrations/workable.md b/website/forms/php/filters/integrations/workable.md new file mode 100644 index 000000000..a479f608b --- /dev/null +++ b/website/forms/php/filters/integrations/workable.md @@ -0,0 +1,6 @@ +--- +id: workable +title: Workable +--- + +*Coming soon* diff --git a/website/forms/php/filters/intro.md b/website/forms/php/filters/intro.md new file mode 100644 index 000000000..c95365bc5 --- /dev/null +++ b/website/forms/php/filters/intro.md @@ -0,0 +1,6 @@ +--- +id: intro +title: Intro +--- + +*Coming soon* diff --git a/website/forms/php/filters/troubleshooting/output-log.md b/website/forms/php/filters/troubleshooting/output-log.md new file mode 100644 index 000000000..928133585 --- /dev/null +++ b/website/forms/php/filters/troubleshooting/output-log.md @@ -0,0 +1,6 @@ +--- +id: output-log +title: Output log +--- + +*Coming soon* diff --git a/website/forms/php/filters/validation/fail-mimetype-validation-when-file-not-on-fs.md b/website/forms/php/filters/validation/fail-mimetype-validation-when-file-not-on-fs.md new file mode 100644 index 000000000..4c9332a07 --- /dev/null +++ b/website/forms/php/filters/validation/fail-mimetype-validation-when-file-not-on-fs.md @@ -0,0 +1,6 @@ +--- +id: fail-mimetype-validation-when-file-not-on-fs +title: Fail mimetype validation +--- + +*Coming soon* diff --git a/website/forms/php/global-variables.md b/website/forms/php/global-variables.md deleted file mode 100644 index cc36e6f20..000000000 --- a/website/forms/php/global-variables.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -id: global-variables -title: Global variables ---- - -*Coming soon* diff --git a/website/forms/php/global-variables/active-campaign.md b/website/forms/php/global-variables/active-campaign.md new file mode 100644 index 000000000..e149c3b21 --- /dev/null +++ b/website/forms/php/global-variables/active-campaign.md @@ -0,0 +1,6 @@ +--- +id: active-campaign +title: Active Campaign +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/airtable.md b/website/forms/php/global-variables/airtable.md new file mode 100644 index 000000000..5386ea0fc --- /dev/null +++ b/website/forms/php/global-variables/airtable.md @@ -0,0 +1,6 @@ +--- +id: airtable +title: Airtable +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/clearbit.md b/website/forms/php/global-variables/clearbit.md new file mode 100644 index 000000000..c1a5a69c9 --- /dev/null +++ b/website/forms/php/global-variables/clearbit.md @@ -0,0 +1,6 @@ +--- +id: clearbit +title: Clearbit +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/geolocation.md b/website/forms/php/global-variables/geolocation.md new file mode 100644 index 000000000..4877115d8 --- /dev/null +++ b/website/forms/php/global-variables/geolocation.md @@ -0,0 +1,6 @@ +--- +id: geolocation +title: Geolocation +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/goodbits.md b/website/forms/php/global-variables/goodbits.md new file mode 100644 index 000000000..68773c5b3 --- /dev/null +++ b/website/forms/php/global-variables/goodbits.md @@ -0,0 +1,6 @@ +--- +id: goodbits +title: Goodbits +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/google-recaptcha.md b/website/forms/php/global-variables/google-recaptcha.md new file mode 100644 index 000000000..9143cdca1 --- /dev/null +++ b/website/forms/php/global-variables/google-recaptcha.md @@ -0,0 +1,6 @@ +--- +id: google-recaptcha +title: Google reCaptcha +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/greenhouse.md b/website/forms/php/global-variables/greenhouse.md new file mode 100644 index 000000000..9329f43a6 --- /dev/null +++ b/website/forms/php/global-variables/greenhouse.md @@ -0,0 +1,6 @@ +--- +id: greenhouse +title: Greenhouse +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/hubspot.md b/website/forms/php/global-variables/hubspot.md new file mode 100644 index 000000000..8d25931c3 --- /dev/null +++ b/website/forms/php/global-variables/hubspot.md @@ -0,0 +1,6 @@ +--- +id: hubspot +title: Hubspot +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/intro.md b/website/forms/php/global-variables/intro.md new file mode 100644 index 000000000..c95365bc5 --- /dev/null +++ b/website/forms/php/global-variables/intro.md @@ -0,0 +1,6 @@ +--- +id: intro +title: Intro +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/jira.md b/website/forms/php/global-variables/jira.md new file mode 100644 index 000000000..07833b819 --- /dev/null +++ b/website/forms/php/global-variables/jira.md @@ -0,0 +1,6 @@ +--- +id: jira +title: Jira +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/mailchimp.md b/website/forms/php/global-variables/mailchimp.md new file mode 100644 index 000000000..b904a69da --- /dev/null +++ b/website/forms/php/global-variables/mailchimp.md @@ -0,0 +1,6 @@ +--- +id: mailchimp +title: Mailchimp +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/mailerlite.md b/website/forms/php/global-variables/mailerlite.md new file mode 100644 index 000000000..c101ef83e --- /dev/null +++ b/website/forms/php/global-variables/mailerlite.md @@ -0,0 +1,6 @@ +--- +id: mailerlite +title: MailerLite +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/moments.md b/website/forms/php/global-variables/moments.md new file mode 100644 index 000000000..994383408 --- /dev/null +++ b/website/forms/php/global-variables/moments.md @@ -0,0 +1,6 @@ +--- +id: moments +title: Moments +--- + +*Coming soon* diff --git a/website/forms/php/global-variables/workable.md b/website/forms/php/global-variables/workable.md new file mode 100644 index 000000000..a479f608b --- /dev/null +++ b/website/forms/php/global-variables/workable.md @@ -0,0 +1,6 @@ +--- +id: workable +title: Workable +--- + +*Coming soon* diff --git a/website/sidebars-forms.js b/website/sidebars-forms.js index 93b99b386..7aa0d963e 100644 --- a/website/sidebars-forms.js +++ b/website/sidebars-forms.js @@ -4,11 +4,139 @@ module.exports = { 'intro', ], 'PHP': [ - 'php/global-variables', - 'php/filters', + { + 'type': 'category', + 'label': 'Global variables', + 'items': [ + 'php/global-variables/intro', + 'php/global-variables/active-campaign', + 'php/global-variables/airtable', + 'php/global-variables/clearbit', + 'php/global-variables/goodbits', + 'php/global-variables/greenhouse', + 'php/global-variables/hubspot', + 'php/global-variables/jira', + 'php/global-variables/mailchimp', + 'php/global-variables/mailerlite', + 'php/global-variables/moments', + 'php/global-variables/workable', + ] + }, + { + 'type': 'category', + 'label': 'Filters', + 'items': [ + 'php/filters/intro', + { + 'type': 'category', + 'label': 'Block', + 'items': [ + 'php/filters/block/checkboxes', + 'php/filters/block/country', + 'php/filters/block/custom-data', + 'php/filters/block/date', + 'php/filters/block/field', + 'php/filters/block/file', + 'php/filters/block/form-selector', + 'php/filters/block/form', + 'php/filters/block/forms', + 'php/filters/block/input', + 'php/filters/block/phone', + 'php/filters/block/radios', + 'php/filters/block/select', + 'php/filters/block/step', + 'php/filters/block/submit', + 'php/filters/block/textarea', + ], + }, + { + 'type': 'category', + 'label': 'Blocks', + 'items': [ + 'php/filters/blocks/additional-blocks', + 'php/filters/blocks/media-breakpoints', + ], + }, + { + 'type': 'category', + 'label': 'Enrichment', + 'items': [ + 'php/filters/enrichment/manual-map', + ], + }, + { + 'type': 'category', + 'label': 'General', + 'items': [ + 'php/filters/general/http-request-timeout', + 'php/filters/general/set-locale', + ], + }, + { + 'type': 'category', + 'label': 'Geolocation', + 'items': [ + 'php/filters/geolocation/cookie-name', + 'php/filters/geolocation/countries', + 'php/filters/geolocation/db-location', + 'php/filters/geolocation/disable', + 'php/filters/geolocation/phar-location', + 'php/filters/geolocation/wp-rocket-advanced-cache', + ], + }, + { + 'type': 'category', + 'label': 'Troubleshooting', + 'items': [ + 'php/filters/troubleshooting/output-log', + ], + }, + { + 'type': 'category', + 'label': 'Validation', + 'items': [ + 'php/filters/validation/fail-mimetype-validation-when-file-not-on-fs', + ], + }, + { + 'type': 'category', + 'label': 'Integrations', + 'items': [ + 'php/filters/integrations/active-campaign', + 'php/filters/integrations/airtable', + 'php/filters/integrations/clearbit', + 'php/filters/integrations/goodbits', + 'php/filters/integrations/greenhouse', + 'php/filters/integrations/hubspot', + 'php/filters/integrations/jira', + 'php/filters/integrations/mailchimp', + 'php/filters/integrations/mailer', + 'php/filters/integrations/mailerlite', + 'php/filters/integrations/moments', + 'php/filters/integrations/workable', + ], + }, + ], + }, ], 'JavaScript': [ - 'javascript/events', + 'javascript/intro', + 'javascript/examples', + 'javascript/manual-initiation', + { + 'type': 'category', + 'label': 'Window object', + 'items': [ + 'javascript/window/state', + 'javascript/window/events', + 'javascript/window/conditional-tags', + 'javascript/window/enrichment', + 'javascript/window/form', + 'javascript/window/step', + 'javascript/window/store', + 'javascript/window/utils', + ] + }, ], 'Features': [ 'features/cache', diff --git a/website/src/theme/sections/os-projects.jsx b/website/src/theme/sections/os-projects.jsx index 74abeabf3..f307f0e0d 100644 --- a/website/src/theme/sections/os-projects.jsx +++ b/website/src/theme/sections/os-projects.jsx @@ -13,11 +13,6 @@ export const EsOpenSource = (props) => { text: 'Eightshift Boilerplate', url: 'https://github.com/infinum/eightshift-boilerplate' }, - { - icon: osProjectIcons.eightshiftCodingStandard, - text: 'Eightshift Coding Standards for WordPress', - url: 'https://github.com/infinum/eightshift-coding-standards' - }, { icon: osProjectIcons.boilerplate, text: 'Eightshift Boilerplate Plugin', @@ -47,7 +42,12 @@ export const EsOpenSource = (props) => { icon: osProjectIcons.storybook, text: 'Eightshift Storybook', url: 'https://github.com/infinum/eightshift-storybook' - } + }, + { + icon: osProjectIcons.eightshiftCodingStandard, + text: 'Eightshift Coding Standards for WordPress', + url: 'https://github.com/infinum/eightshift-coding-standards' + }, ]} /> );