Customer Export
Contribution Name: Customer Export
Contribution Version: 1.0
Author Name: Robert Heath
Author E-Mail Address: robert@robertheath.net
Author Website: www.robertheath.net
This contribution adds the ability to export and save customer data in CSV (Comma Separated Value) format. CSV is a standard format that can be imported into most applications that allow data import. CSV format is also compatible with most spreadsheet applications such as Microsoft Excel.
INSTALLATION:
Step 1: Upload the files included in this package
Step 2: Add the following line to /admin/includes/filenames.php
AFTER
define(’FILENAME_CUSTOMERS’, ‘customers.php’);ADD
define(’FILENAME_CUSTOMER_EXPORT’, ‘customer_export.php’);
Step 3: Add the following line to/admin/includes/languages/english.php
AFTER
define(’BOX_CUSTOMERS_ORDERS’, ‘Orders’);ADD
define(’BOX_CUSTOMERS_EXPORT’, ‘Export Customers’);
Step 4: Add the following line to /admin/includes/boxes/customers.php
AFTER
‘<a href=”‘ . tep_href_link(FILENAME_CUSTOMERS, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_CUSTOMERS_CUSTOMERS . ‘</a><br>’ .ADD
‘<a href=”‘ . tep_href_link(FILENAME_CUSTOMERS_EXPORT, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_CUSTOMERS_EXPORT . ‘</a><br>’ .