├── .gitattributes ├── .gitignore ├── README.md ├── api-template-snippets └── api-prepend-repeater-item.php ├── api ├── README.md ├── api-create-new-superuser.php ├── api-create-page.php ├── api-create-shortlinks-for-jumplinks-module.php ├── api-formbuilder-entries-to-mailchimp.php ├── api-get-formbuilder-entries.php ├── api-limit-repeater-results.php ├── api-move-field-data-to-another-field.php ├── api-page-subselect.php ├── api-reset-password.php ├── api-set-value-multilanguage.php └── api-update-created-date.php ├── backup-full-local ├── Modules │ ├── wbmnfktrAmazonUpdater │ │ ├── _amz │ │ │ ├── amz-action.php │ │ │ ├── amz-func.php │ │ │ └── amz-vars.php │ │ ├── amazon.php │ │ └── wbmnfktrAmazonUpdater.module │ ├── wbmnfktrGoogleMapsUpdater │ │ └── wbmnfktrGoogleMapsUpdater.module │ └── wbmnfktrInventoryChecker │ │ └── wbmnfktrInventoryChecker.module ├── Snippets │ ├── _functions.php │ ├── api-create-page.php │ ├── api-create-shortlinks-for-jumplinks-module.php │ ├── api-formbuilder-entries.php │ ├── api-move-field-data-to-another-field.php │ ├── api-page-subselect.php │ ├── api-reset-password.php │ ├── api-set-value-by-language.php │ ├── api-update-created-date.php │ ├── ckeditor-text-align.txt │ ├── config-serial-key-procache.txt │ ├── config-session-allow.php │ ├── delete-form-builder-entries-after-time.php │ ├── form-refocus.js │ ├── google-analytics-opt-out.js │ ├── init.php │ ├── mailer.php │ ├── module-default-language.php │ ├── module-page-edit-only-by-creator.php │ ├── pages2pdf-custom.php │ ├── paypal-payment.txt │ ├── ready-automatite-cron-site-check.php │ ├── ready-formbuilder-renderReady.php │ ├── ready-google-maps-adress-lat-long.php │ ├── ready-log-outgoing-emails.php │ ├── ready-loginregister-mailchimp.php │ ├── ready-redirect-to-formbuilder-page.php │ ├── ready-set-session-variable.php │ ├── ready-sort-templates-by-label.php │ ├── ready-submit-to-mailchimp-from-formbuilder-entries.php │ ├── ready-submit-to-mailchimp.php │ ├── ready-validate-formbuilder-fields.php │ ├── snippet-check-ip-country.php │ └── template-breadcrumb.php └── dnt.js ├── hannacode ├── README.md ├── hannacode-embed-rumble-privacywire.php ├── hannacode-embed-rumble.php └── hannacode-table-of-contents-jumplinks-demo.php ├── hooks-ready-php ├── README.md ├── ready-automate-cron-site-check.php ├── ready-clean-youtube-url.php ├── ready-formbuilder-newsletter-subscription.php ├── ready-google-maps-adress-lat-long.php ├── ready-log-outgoing-emails.php ├── ready-set-session-variable.php └── ready-sort-templates-by-label.php ├── hooks ├── README.md ├── hook-ready-formbuilder-from.php ├── hook-ready-formbuilder-redirect-created-page.php ├── hook-ready-formbuilder-subject.php ├── hook-ready-formbuilder-submit-to-mailchimp.php ├── hook-ready-formbuilder-validate-fields.php └── hook-ready-loginregister-to-mailchimp.php └── ready-hook-on-demand-mirroring-web-files.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/README.md -------------------------------------------------------------------------------- /api-template-snippets/api-prepend-repeater-item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api-template-snippets/api-prepend-repeater-item.php -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- 1 | # ProcessWire API snippets -------------------------------------------------------------------------------- /api/api-create-new-superuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-create-new-superuser.php -------------------------------------------------------------------------------- /api/api-create-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-create-page.php -------------------------------------------------------------------------------- /api/api-create-shortlinks-for-jumplinks-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-create-shortlinks-for-jumplinks-module.php -------------------------------------------------------------------------------- /api/api-formbuilder-entries-to-mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-formbuilder-entries-to-mailchimp.php -------------------------------------------------------------------------------- /api/api-get-formbuilder-entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-get-formbuilder-entries.php -------------------------------------------------------------------------------- /api/api-limit-repeater-results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-limit-repeater-results.php -------------------------------------------------------------------------------- /api/api-move-field-data-to-another-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-move-field-data-to-another-field.php -------------------------------------------------------------------------------- /api/api-page-subselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-page-subselect.php -------------------------------------------------------------------------------- /api/api-reset-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-reset-password.php -------------------------------------------------------------------------------- /api/api-set-value-multilanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-set-value-multilanguage.php -------------------------------------------------------------------------------- /api/api-update-created-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/api/api-update-created-date.php -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-action.php -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-func.php -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrAmazonUpdater/_amz/amz-vars.php -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrAmazonUpdater/amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrAmazonUpdater/amazon.php -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrAmazonUpdater/wbmnfktrAmazonUpdater.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrAmazonUpdater/wbmnfktrAmazonUpdater.module -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrGoogleMapsUpdater/wbmnfktrGoogleMapsUpdater.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrGoogleMapsUpdater/wbmnfktrGoogleMapsUpdater.module -------------------------------------------------------------------------------- /backup-full-local/Modules/wbmnfktrInventoryChecker/wbmnfktrInventoryChecker.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Modules/wbmnfktrInventoryChecker/wbmnfktrInventoryChecker.module -------------------------------------------------------------------------------- /backup-full-local/Snippets/_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/_functions.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-create-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-create-page.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-create-shortlinks-for-jumplinks-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-create-shortlinks-for-jumplinks-module.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-formbuilder-entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-formbuilder-entries.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-move-field-data-to-another-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-move-field-data-to-another-field.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-page-subselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-page-subselect.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-reset-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-reset-password.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-set-value-by-language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-set-value-by-language.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/api-update-created-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/api-update-created-date.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ckeditor-text-align.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ckeditor-text-align.txt -------------------------------------------------------------------------------- /backup-full-local/Snippets/config-serial-key-procache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/config-serial-key-procache.txt -------------------------------------------------------------------------------- /backup-full-local/Snippets/config-session-allow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/config-session-allow.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/delete-form-builder-entries-after-time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/delete-form-builder-entries-after-time.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/form-refocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/form-refocus.js -------------------------------------------------------------------------------- /backup-full-local/Snippets/google-analytics-opt-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/google-analytics-opt-out.js -------------------------------------------------------------------------------- /backup-full-local/Snippets/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/init.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/mailer.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/module-default-language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/module-default-language.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/module-page-edit-only-by-creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/module-page-edit-only-by-creator.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/pages2pdf-custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/pages2pdf-custom.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/paypal-payment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/paypal-payment.txt -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-automatite-cron-site-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-automatite-cron-site-check.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-formbuilder-renderReady.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-formbuilder-renderReady.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-google-maps-adress-lat-long.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-google-maps-adress-lat-long.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-log-outgoing-emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-log-outgoing-emails.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-loginregister-mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-loginregister-mailchimp.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-redirect-to-formbuilder-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-redirect-to-formbuilder-page.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-set-session-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-set-session-variable.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-sort-templates-by-label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-sort-templates-by-label.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-submit-to-mailchimp-from-formbuilder-entries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-submit-to-mailchimp-from-formbuilder-entries.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-submit-to-mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-submit-to-mailchimp.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/ready-validate-formbuilder-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/ready-validate-formbuilder-fields.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/snippet-check-ip-country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/snippet-check-ip-country.php -------------------------------------------------------------------------------- /backup-full-local/Snippets/template-breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/Snippets/template-breadcrumb.php -------------------------------------------------------------------------------- /backup-full-local/dnt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/backup-full-local/dnt.js -------------------------------------------------------------------------------- /hannacode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hannacode/README.md -------------------------------------------------------------------------------- /hannacode/hannacode-embed-rumble-privacywire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hannacode/hannacode-embed-rumble-privacywire.php -------------------------------------------------------------------------------- /hannacode/hannacode-embed-rumble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hannacode/hannacode-embed-rumble.php -------------------------------------------------------------------------------- /hannacode/hannacode-table-of-contents-jumplinks-demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hannacode/hannacode-table-of-contents-jumplinks-demo.php -------------------------------------------------------------------------------- /hooks-ready-php/README.md: -------------------------------------------------------------------------------- 1 | # ProcessWire ready.php Hooks -------------------------------------------------------------------------------- /hooks-ready-php/ready-automate-cron-site-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-automate-cron-site-check.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-clean-youtube-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-clean-youtube-url.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-formbuilder-newsletter-subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-formbuilder-newsletter-subscription.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-google-maps-adress-lat-long.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-google-maps-adress-lat-long.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-log-outgoing-emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-log-outgoing-emails.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-set-session-variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-set-session-variable.php -------------------------------------------------------------------------------- /hooks-ready-php/ready-sort-templates-by-label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks-ready-php/ready-sort-templates-by-label.php -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/README.md -------------------------------------------------------------------------------- /hooks/hook-ready-formbuilder-from.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-formbuilder-from.php -------------------------------------------------------------------------------- /hooks/hook-ready-formbuilder-redirect-created-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-formbuilder-redirect-created-page.php -------------------------------------------------------------------------------- /hooks/hook-ready-formbuilder-subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-formbuilder-subject.php -------------------------------------------------------------------------------- /hooks/hook-ready-formbuilder-submit-to-mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-formbuilder-submit-to-mailchimp.php -------------------------------------------------------------------------------- /hooks/hook-ready-formbuilder-validate-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-formbuilder-validate-fields.php -------------------------------------------------------------------------------- /hooks/hook-ready-loginregister-to-mailchimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/hooks/hook-ready-loginregister-to-mailchimp.php -------------------------------------------------------------------------------- /ready-hook-on-demand-mirroring-web-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmanufaktur/processwire-snippets/HEAD/ready-hook-on-demand-mirroring-web-files.php --------------------------------------------------------------------------------