├── LICENSE ├── README.md ├── downloads └── .empty ├── generator ├── compiler.class.php ├── document.class.php ├── docx_processor.class.php ├── index.php ├── request.class.php └── xlsx_processor.class.php └── templates └── .empty /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # f-document 2 | Генератор документов 3 | -------------------------------------------------------------------------------- /downloads/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /generator/compiler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/compiler.class.php -------------------------------------------------------------------------------- /generator/document.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/document.class.php -------------------------------------------------------------------------------- /generator/docx_processor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/docx_processor.class.php -------------------------------------------------------------------------------- /generator/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/index.php -------------------------------------------------------------------------------- /generator/request.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/request.class.php -------------------------------------------------------------------------------- /generator/xlsx_processor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenabakun/f-document/HEAD/generator/xlsx_processor.class.php -------------------------------------------------------------------------------- /templates/.empty: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------