2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Set of functions used to build CSV dumps of tables
6 * @package phpMyAdmin-Export-CSV
9 if (! defined('PHPMYADMIN')) {
16 if (isset($plugin_list)) {
17 $plugin_list['excel'] = array(
18 'text' => 'strStrucExcelCSV',
20 'mime_type' => 'text/comma-separated-values',
22 array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
23 array('type' => 'bool', 'name' => 'escapeCRLF', 'text' => 'strEscapeCRLF'),
24 array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
30 'mac_excel2003' => 'Excel 2003 / Macintosh',
31 'mac_excel2008' => 'Excel 2008 / Macintosh'),
32 'text' => 'strExcelEdition'),
33 array('type' => 'hidden', 'name' => 'data'),
35 'options_text' => 'strOptions',
38 /* Everything rest is coded in csv plugin */
39 require './libraries/export/csv.php';