├── .gitignore ├── LICENSE ├── README.md ├── buttonradicalform.php ├── customcode.xml ├── emailalternatives.xml ├── historyradicalform.php ├── index.html ├── language ├── en-GB │ ├── en-GB.plg_system_radicalform.ini │ └── en-GB.plg_system_radicalform.sys.ini └── ru-RU │ ├── ru-RU.plg_system_radicalform.ini │ └── ru-RU.plg_system_radicalform.sys.ini ├── media ├── css │ └── adminscript.css ├── images │ └── filenotfound.svg ├── index.html └── js │ ├── adminscript.js │ ├── adminscript.min.js │ ├── index.html │ ├── script.js │ └── script.min.js ├── radicalform.php ├── radicalform.xml ├── script.php ├── storageindicator.php ├── telegramchatids.xml └── tmpl ├── default.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/README.md -------------------------------------------------------------------------------- /buttonradicalform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/buttonradicalform.php -------------------------------------------------------------------------------- /customcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/customcode.xml -------------------------------------------------------------------------------- /emailalternatives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/emailalternatives.xml -------------------------------------------------------------------------------- /historyradicalform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/historyradicalform.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/index.html -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_radicalform.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/language/en-GB/en-GB.plg_system_radicalform.ini -------------------------------------------------------------------------------- /language/en-GB/en-GB.plg_system_radicalform.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/language/en-GB/en-GB.plg_system_radicalform.sys.ini -------------------------------------------------------------------------------- /language/ru-RU/ru-RU.plg_system_radicalform.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/language/ru-RU/ru-RU.plg_system_radicalform.ini -------------------------------------------------------------------------------- /language/ru-RU/ru-RU.plg_system_radicalform.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/language/ru-RU/ru-RU.plg_system_radicalform.sys.ini -------------------------------------------------------------------------------- /media/css/adminscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/css/adminscript.css -------------------------------------------------------------------------------- /media/images/filenotfound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/images/filenotfound.svg -------------------------------------------------------------------------------- /media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/index.html -------------------------------------------------------------------------------- /media/js/adminscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/js/adminscript.js -------------------------------------------------------------------------------- /media/js/adminscript.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/js/adminscript.min.js -------------------------------------------------------------------------------- /media/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/js/index.html -------------------------------------------------------------------------------- /media/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/js/script.js -------------------------------------------------------------------------------- /media/js/script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/media/js/script.min.js -------------------------------------------------------------------------------- /radicalform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/radicalform.php -------------------------------------------------------------------------------- /radicalform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/radicalform.xml -------------------------------------------------------------------------------- /script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/script.php -------------------------------------------------------------------------------- /storageindicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/storageindicator.php -------------------------------------------------------------------------------- /telegramchatids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/telegramchatids.xml -------------------------------------------------------------------------------- /tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/tmpl/default.php -------------------------------------------------------------------------------- /tmpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delo-Design/radicalform/HEAD/tmpl/index.html --------------------------------------------------------------------------------