├── README.md ├── composer.json ├── modman └── src └── app ├── code └── community │ └── MagentoHackathon │ └── FastSimpleExport │ ├── Model │ ├── Export.php │ └── Export │ │ ├── Adapter │ │ ├── Abstract.php │ │ └── Array.php │ │ └── Entity │ │ ├── Attribute │ │ └── Option.php │ │ ├── Cartrule.php │ │ ├── Catalogrule.php │ │ ├── Category │ │ └── Product.php │ │ └── Order.php │ └── etc │ └── config.xml └── etc └── modules └── MagentoHackathon_FastSimpleExport.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/modman -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Adapter/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Adapter/Abstract.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Adapter/Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Adapter/Array.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Attribute/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Attribute/Option.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Cartrule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Cartrule.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Catalogrule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Catalogrule.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Category/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Category/Product.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/Model/Export/Entity/Order.php -------------------------------------------------------------------------------- /src/app/code/community/MagentoHackathon/FastSimpleExport/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/code/community/MagentoHackathon/FastSimpleExport/etc/config.xml -------------------------------------------------------------------------------- /src/app/etc/modules/MagentoHackathon_FastSimpleExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento-hackathon/FastSimpleExport/HEAD/src/app/etc/modules/MagentoHackathon_FastSimpleExport.xml --------------------------------------------------------------------------------