├── .github └── stale.yml ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── package.json ├── phpstan.neon ├── postcss.config.js ├── resources ├── img │ ├── form-entries.jpg │ └── plugin-logo.png ├── js │ ├── classes │ │ └── EntriesService.js │ ├── components │ │ ├── FormConfig │ │ │ ├── Container.vue │ │ │ ├── Lightswitch.vue │ │ │ ├── Settings.vue │ │ │ ├── partials │ │ │ │ └── FieldOptions.vue │ │ │ └── types │ │ │ │ ├── Field.vue │ │ │ │ └── Html.vue │ │ └── Partials │ │ │ ├── Collapsable.vue │ │ │ └── Editor.vue │ ├── entry.js │ └── filters │ │ └── filters.js └── sass │ └── cp-wheelform.scss ├── src ├── Mailer.php ├── Plugin.php ├── assets │ ├── ListFieldAsset.php │ ├── ToolsAsset.php │ ├── WheelformCpAsset.php │ ├── css │ │ ├── codemirror.css │ │ └── cp-wheelform.css │ └── js │ │ ├── list-field.js │ │ ├── tools.js │ │ ├── wheelform-bundle.js │ │ └── wheelform-bundle.js.LICENSE.txt ├── behaviors │ ├── FormFieldBehavior.php │ └── JsonFieldBehavior.php ├── console │ └── controllers │ │ └── MessageController.php ├── controllers │ ├── BaseController.php │ ├── EntriesController.php │ ├── FormController.php │ └── MessageController.php ├── db │ ├── BaseActiveRecord.php │ ├── Form.php │ ├── FormField.php │ ├── Message.php │ └── MessageValue.php ├── events │ ├── MessageEvent.php │ ├── RegisterFieldsEvent.php │ ├── ResponseEvent.php │ └── SendEvent.php ├── extensions │ └── WheelformVariable.php ├── fields │ └── FormField.php ├── helpers │ ├── ExportHelper.php │ └── TagHelper.php ├── icon-mask.svg ├── icon.svg ├── migrations │ ├── Install.php │ ├── m180407_040301_add_index_view_column_to_form_fields_table.php │ ├── m180407_170219_add_active_column_to_form_fields.php │ ├── m180430_232743_add_read_column_to_message.php │ ├── m180602_051517_AddOrderToField.php │ ├── m180802_015031_save_entry_to_forms_table.php │ ├── m180804_230709_add_options_to_form_fields.php │ └── m180814_230614_add_options_column_forms_table.php ├── models │ ├── Settings.php │ ├── fields │ │ ├── BaseFieldType.php │ │ ├── Checkbox.php │ │ ├── Consent.php │ │ ├── Date.php │ │ ├── Email.php │ │ ├── File.php │ │ ├── Hidden.php │ │ ├── HtmlField.php │ │ ├── ListField.php │ │ ├── Number.php │ │ ├── Radio.php │ │ ├── Select.php │ │ ├── Telephone.php │ │ ├── Text.php │ │ ├── Textarea.php │ │ └── Time.php │ ├── helpers │ │ └── JsonField.php │ └── tools │ │ └── ImportFile.php ├── services │ ├── BaseService.php │ ├── FieldService.php │ ├── FormService.php │ ├── MessageService.php │ ├── MetaTagsService.php │ ├── RecaptchaV3Service.php │ ├── WheelformService.php │ └── permissions │ │ └── WheelformPermissions.php ├── templates │ ├── _edit-form.twig │ ├── _emails │ │ ├── general.twig │ │ └── notification.twig │ ├── _entries.twig │ ├── _entry.twig │ ├── _includes │ │ └── _form_field.twig │ ├── _index.twig │ ├── _settings.twig │ ├── embeds │ │ └── _edit-form-field.twig │ └── utilities │ │ └── tools.twig ├── translations │ ├── bg │ │ └── wheelform.php │ ├── de │ │ └── wheelform.php │ ├── es │ │ └── wheelform.php │ ├── fr │ │ └── wheelform.php │ ├── it │ │ └── wheelform.php │ ├── nb │ │ └── wheelform.php │ ├── nl │ │ └── wheelform.php │ └── pt │ │ └── wheelform.php ├── utilities │ └── Tools.php ├── validators │ └── JsonValidator.php └── widgets │ └── LinkPager.php ├── tsconfig.json └── webpack.config.js /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.17.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/phpstan.neon -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/img/form-entries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/img/form-entries.jpg -------------------------------------------------------------------------------- /resources/img/plugin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/img/plugin-logo.png -------------------------------------------------------------------------------- /resources/js/classes/EntriesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/classes/EntriesService.js -------------------------------------------------------------------------------- /resources/js/components/FormConfig/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/Container.vue -------------------------------------------------------------------------------- /resources/js/components/FormConfig/Lightswitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/Lightswitch.vue -------------------------------------------------------------------------------- /resources/js/components/FormConfig/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/Settings.vue -------------------------------------------------------------------------------- /resources/js/components/FormConfig/partials/FieldOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/partials/FieldOptions.vue -------------------------------------------------------------------------------- /resources/js/components/FormConfig/types/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/types/Field.vue -------------------------------------------------------------------------------- /resources/js/components/FormConfig/types/Html.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/FormConfig/types/Html.vue -------------------------------------------------------------------------------- /resources/js/components/Partials/Collapsable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/Partials/Collapsable.vue -------------------------------------------------------------------------------- /resources/js/components/Partials/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/components/Partials/Editor.vue -------------------------------------------------------------------------------- /resources/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/entry.js -------------------------------------------------------------------------------- /resources/js/filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/js/filters/filters.js -------------------------------------------------------------------------------- /resources/sass/cp-wheelform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/resources/sass/cp-wheelform.scss -------------------------------------------------------------------------------- /src/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/Mailer.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /src/assets/ListFieldAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/ListFieldAsset.php -------------------------------------------------------------------------------- /src/assets/ToolsAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/ToolsAsset.php -------------------------------------------------------------------------------- /src/assets/WheelformCpAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/WheelformCpAsset.php -------------------------------------------------------------------------------- /src/assets/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/css/codemirror.css -------------------------------------------------------------------------------- /src/assets/css/cp-wheelform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/css/cp-wheelform.css -------------------------------------------------------------------------------- /src/assets/js/list-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/js/list-field.js -------------------------------------------------------------------------------- /src/assets/js/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/js/tools.js -------------------------------------------------------------------------------- /src/assets/js/wheelform-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/js/wheelform-bundle.js -------------------------------------------------------------------------------- /src/assets/js/wheelform-bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/assets/js/wheelform-bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /src/behaviors/FormFieldBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/behaviors/FormFieldBehavior.php -------------------------------------------------------------------------------- /src/behaviors/JsonFieldBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/behaviors/JsonFieldBehavior.php -------------------------------------------------------------------------------- /src/console/controllers/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/console/controllers/MessageController.php -------------------------------------------------------------------------------- /src/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/controllers/BaseController.php -------------------------------------------------------------------------------- /src/controllers/EntriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/controllers/EntriesController.php -------------------------------------------------------------------------------- /src/controllers/FormController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/controllers/FormController.php -------------------------------------------------------------------------------- /src/controllers/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/controllers/MessageController.php -------------------------------------------------------------------------------- /src/db/BaseActiveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/db/BaseActiveRecord.php -------------------------------------------------------------------------------- /src/db/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/db/Form.php -------------------------------------------------------------------------------- /src/db/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/db/FormField.php -------------------------------------------------------------------------------- /src/db/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/db/Message.php -------------------------------------------------------------------------------- /src/db/MessageValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/db/MessageValue.php -------------------------------------------------------------------------------- /src/events/MessageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/events/MessageEvent.php -------------------------------------------------------------------------------- /src/events/RegisterFieldsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/events/RegisterFieldsEvent.php -------------------------------------------------------------------------------- /src/events/ResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/events/ResponseEvent.php -------------------------------------------------------------------------------- /src/events/SendEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/events/SendEvent.php -------------------------------------------------------------------------------- /src/extensions/WheelformVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/extensions/WheelformVariable.php -------------------------------------------------------------------------------- /src/fields/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/fields/FormField.php -------------------------------------------------------------------------------- /src/helpers/ExportHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/helpers/ExportHelper.php -------------------------------------------------------------------------------- /src/helpers/TagHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/helpers/TagHelper.php -------------------------------------------------------------------------------- /src/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/icon-mask.svg -------------------------------------------------------------------------------- /src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/icon.svg -------------------------------------------------------------------------------- /src/migrations/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/Install.php -------------------------------------------------------------------------------- /src/migrations/m180407_040301_add_index_view_column_to_form_fields_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180407_040301_add_index_view_column_to_form_fields_table.php -------------------------------------------------------------------------------- /src/migrations/m180407_170219_add_active_column_to_form_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180407_170219_add_active_column_to_form_fields.php -------------------------------------------------------------------------------- /src/migrations/m180430_232743_add_read_column_to_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180430_232743_add_read_column_to_message.php -------------------------------------------------------------------------------- /src/migrations/m180602_051517_AddOrderToField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180602_051517_AddOrderToField.php -------------------------------------------------------------------------------- /src/migrations/m180802_015031_save_entry_to_forms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180802_015031_save_entry_to_forms_table.php -------------------------------------------------------------------------------- /src/migrations/m180804_230709_add_options_to_form_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180804_230709_add_options_to_form_fields.php -------------------------------------------------------------------------------- /src/migrations/m180814_230614_add_options_column_forms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/migrations/m180814_230614_add_options_column_forms_table.php -------------------------------------------------------------------------------- /src/models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/Settings.php -------------------------------------------------------------------------------- /src/models/fields/BaseFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/BaseFieldType.php -------------------------------------------------------------------------------- /src/models/fields/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Checkbox.php -------------------------------------------------------------------------------- /src/models/fields/Consent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Consent.php -------------------------------------------------------------------------------- /src/models/fields/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Date.php -------------------------------------------------------------------------------- /src/models/fields/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Email.php -------------------------------------------------------------------------------- /src/models/fields/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/File.php -------------------------------------------------------------------------------- /src/models/fields/Hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Hidden.php -------------------------------------------------------------------------------- /src/models/fields/HtmlField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/HtmlField.php -------------------------------------------------------------------------------- /src/models/fields/ListField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/ListField.php -------------------------------------------------------------------------------- /src/models/fields/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Number.php -------------------------------------------------------------------------------- /src/models/fields/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Radio.php -------------------------------------------------------------------------------- /src/models/fields/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Select.php -------------------------------------------------------------------------------- /src/models/fields/Telephone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Telephone.php -------------------------------------------------------------------------------- /src/models/fields/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Text.php -------------------------------------------------------------------------------- /src/models/fields/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Textarea.php -------------------------------------------------------------------------------- /src/models/fields/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/fields/Time.php -------------------------------------------------------------------------------- /src/models/helpers/JsonField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/helpers/JsonField.php -------------------------------------------------------------------------------- /src/models/tools/ImportFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/models/tools/ImportFile.php -------------------------------------------------------------------------------- /src/services/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/BaseService.php -------------------------------------------------------------------------------- /src/services/FieldService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/FieldService.php -------------------------------------------------------------------------------- /src/services/FormService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/FormService.php -------------------------------------------------------------------------------- /src/services/MessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/MessageService.php -------------------------------------------------------------------------------- /src/services/MetaTagsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/MetaTagsService.php -------------------------------------------------------------------------------- /src/services/RecaptchaV3Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/RecaptchaV3Service.php -------------------------------------------------------------------------------- /src/services/WheelformService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/WheelformService.php -------------------------------------------------------------------------------- /src/services/permissions/WheelformPermissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/services/permissions/WheelformPermissions.php -------------------------------------------------------------------------------- /src/templates/_edit-form.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_edit-form.twig -------------------------------------------------------------------------------- /src/templates/_emails/general.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_emails/general.twig -------------------------------------------------------------------------------- /src/templates/_emails/notification.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_emails/notification.twig -------------------------------------------------------------------------------- /src/templates/_entries.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_entries.twig -------------------------------------------------------------------------------- /src/templates/_entry.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_entry.twig -------------------------------------------------------------------------------- /src/templates/_includes/_form_field.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_includes/_form_field.twig -------------------------------------------------------------------------------- /src/templates/_index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_index.twig -------------------------------------------------------------------------------- /src/templates/_settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/_settings.twig -------------------------------------------------------------------------------- /src/templates/embeds/_edit-form-field.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/embeds/_edit-form-field.twig -------------------------------------------------------------------------------- /src/templates/utilities/tools.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/templates/utilities/tools.twig -------------------------------------------------------------------------------- /src/translations/bg/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/bg/wheelform.php -------------------------------------------------------------------------------- /src/translations/de/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/de/wheelform.php -------------------------------------------------------------------------------- /src/translations/es/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/es/wheelform.php -------------------------------------------------------------------------------- /src/translations/fr/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/fr/wheelform.php -------------------------------------------------------------------------------- /src/translations/it/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/it/wheelform.php -------------------------------------------------------------------------------- /src/translations/nb/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/nb/wheelform.php -------------------------------------------------------------------------------- /src/translations/nl/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/nl/wheelform.php -------------------------------------------------------------------------------- /src/translations/pt/wheelform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/translations/pt/wheelform.php -------------------------------------------------------------------------------- /src/utilities/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/utilities/Tools.php -------------------------------------------------------------------------------- /src/validators/JsonValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/validators/JsonValidator.php -------------------------------------------------------------------------------- /src/widgets/LinkPager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/src/widgets/LinkPager.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpertbot/craft-wheelform/HEAD/webpack.config.js --------------------------------------------------------------------------------