2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Set of functions used to build CSV dumps of tables
8 if (! defined('PHPMYADMIN')) {
15 if (isset($plugin_list)) {
16 $plugin_list['excel'] = array(
17 'text' => 'strStrucExcelCSV',
19 'mime_type' => 'text/comma-separated-values',
21 array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
22 array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
23 array('type' => 'select', 'name' => 'edition', 'values' => array('win' => 'Windows', 'mac' => 'Excel 2003 / Macintosh'), 'text' => 'strExcelEdition'),
24 array('type' => 'hidden', 'name' => 'data'),
26 'options_text' => 'strOptions',
29 /* Everything rest is coded in csv plugin */
30 require './libraries/export/csv.php';