├── README.md ├── custom_form ├── dropdown.json ├── input.json ├── label.json ├── slider.json ├── step_slider.json └── toggle.json ├── form ├── TestForm │ ├── plugin.yml │ ├── resources │ │ └── form.json │ └── src │ │ └── nlog │ │ └── TestForm.php ├── form.jpg └── form.json └── modal ├── TestModal ├── plugin.yml ├── resources │ └── modal.json └── src │ └── nlog │ └── TestModal.php └── modal.json /README.md: -------------------------------------------------------------------------------- 1 | # Form_Json 2 | JSON mode for mcpe 1.2's ModalFormRequestPacket 3 | -------------------------------------------------------------------------------- /custom_form/dropdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/dropdown.json -------------------------------------------------------------------------------- /custom_form/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/input.json -------------------------------------------------------------------------------- /custom_form/label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/label.json -------------------------------------------------------------------------------- /custom_form/slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/slider.json -------------------------------------------------------------------------------- /custom_form/step_slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/step_slider.json -------------------------------------------------------------------------------- /custom_form/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/custom_form/toggle.json -------------------------------------------------------------------------------- /form/TestForm/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/form/TestForm/plugin.yml -------------------------------------------------------------------------------- /form/TestForm/resources/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/form/TestForm/resources/form.json -------------------------------------------------------------------------------- /form/TestForm/src/nlog/TestForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/form/TestForm/src/nlog/TestForm.php -------------------------------------------------------------------------------- /form/form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/form/form.jpg -------------------------------------------------------------------------------- /form/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/form/form.json -------------------------------------------------------------------------------- /modal/TestModal/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/modal/TestModal/plugin.yml -------------------------------------------------------------------------------- /modal/TestModal/resources/modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/modal/TestModal/resources/modal.json -------------------------------------------------------------------------------- /modal/TestModal/src/nlog/TestModal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/modal/TestModal/src/nlog/TestModal.php -------------------------------------------------------------------------------- /modal/modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLOGPlugins/Form_Json/HEAD/modal/modal.json --------------------------------------------------------------------------------