From 32bf2777bc44f016089e054050d792b94bdb60cf Mon Sep 17 00:00:00 2001 From: rGaillard Date: Tue, 19 Jun 2012 09:27:33 +0000 Subject: [PATCH] // delete csv.php --- admin-dev/csv.php | 85 ----------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 admin-dev/csv.php diff --git a/admin-dev/csv.php b/admin-dev/csv.php deleted file mode 100644 index 4c645ea3e..000000000 --- a/admin-dev/csv.php +++ /dev/null @@ -1,85 +0,0 @@ - -* @copyright 2007-2012 PrestaShop SA -* @version Release: $Revision$ -* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) -* International Registered Trademark & Property of PrestaShop SA -*/ - -/** - * @since 1.5.0 - */ - -define('_PS_ADMIN_DIR_', getcwd()); -include(_PS_ADMIN_DIR_.'/../config/config.inc.php'); - -if (!Context::getContext()->employee->id) - Tools::redirectAdmin('index.php?controller=AdminLogin'); - -/* - * Functions allowed - */ -$functions = array( - 'id_supply_order' => 'exportSupplyOrder', -); - -/* - * Depending on $_GET, call the corresponding function - */ -foreach ($functions as $var => $function) -{ - if (isset($_GET[$var])) - { - call_user_func($function); - die; - } -} - -/** - * Function used for SupplyOrder - */ -function exportSupplyOrder() -{ - //@TODO Checks if employee has enough access to export - if (!isset($_GET['id_supply_order'])) - die (Tools::displayError('Missing supply order ID')); - - $id_supply_order = (int)$_GET['id_supply_order']; - $supply_order = new SupplyOrder($id_supply_order); - - if (!Validate::isLoadedObject($supply_order)) - die(Tools::displayError('Cannot find this supply order in the database')); - - $details = $supply_order->getEntriesCollection($supply_order->id_lang); - exportCSV($details, 'supply_order_'.$supply_order->reference.'_details'); -} - -/** - * Main function to export CSV - * @param object|Array $object - * @param string $template - */ -function exportCSV(&$object, $filename) -{ - $csv = new CSV($object, $filename); - $csv->export(); -}