├── .gitignore ├── .htaccess ├── README.md ├── classes ├── class.exchange_1c.catalog_import.php └── class.exchange_1c.manager.php ├── index.php ├── module ├── module.1c_exchange.php ├── module.1c_exchange.tpl.php └── tpl │ ├── config.tpl.php │ ├── footer.tpl.php │ ├── header.tpl.php │ ├── page_attributes.tpl.php │ └── page_options.tpl.php ├── plugin └── index.html ├── temp └── index.html └── tool ├── attributes.php ├── category.php └── product.php /.gitignore: -------------------------------------------------------------------------------- 1 | Описание 2 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/README.md -------------------------------------------------------------------------------- /classes/class.exchange_1c.catalog_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/classes/class.exchange_1c.catalog_import.php -------------------------------------------------------------------------------- /classes/class.exchange_1c.manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/classes/class.exchange_1c.manager.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/index.php -------------------------------------------------------------------------------- /module/module.1c_exchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/module.1c_exchange.php -------------------------------------------------------------------------------- /module/module.1c_exchange.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/module.1c_exchange.tpl.php -------------------------------------------------------------------------------- /module/tpl/config.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/tpl/config.tpl.php -------------------------------------------------------------------------------- /module/tpl/footer.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/tpl/footer.tpl.php -------------------------------------------------------------------------------- /module/tpl/header.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/tpl/header.tpl.php -------------------------------------------------------------------------------- /module/tpl/page_attributes.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/tpl/page_attributes.tpl.php -------------------------------------------------------------------------------- /module/tpl/page_options.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/module/tpl/page_options.tpl.php -------------------------------------------------------------------------------- /plugin/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tool/attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/tool/attributes.php -------------------------------------------------------------------------------- /tool/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/tool/category.php -------------------------------------------------------------------------------- /tool/product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/64j/1c_exchange/HEAD/tool/product.php --------------------------------------------------------------------------------