2.11.1.2 release
[phpmyadmin/arisferyanto.git] / libraries / export / excel.php
blobefa85987136e3b29352a647ecaef17a59f5cf69f
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Set of functions used to build CSV dumps of tables
6 * @version $Id$
7 */
9 /**
12 if (isset($plugin_list)) {
13 $plugin_list['excel'] = array(
14 'text' => 'strStrucExcelCSV',
15 'extension' => 'csv',
16 'mime_type' => 'text/comma-separated-values',
17 'options' => array(
18 array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
19 array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
20 array('type' => 'select', 'name' => 'edition', 'values' => array('win' => 'Windows', 'mac' => 'Excel 2003 / Macintosh'), 'text' => 'strExcelEdition'),
21 array('type' => 'hidden', 'name' => 'data'),
23 'options_text' => 'strOptions',
25 } else {
26 /* Everything rest is coded in csv plugin */
27 require './libraries/export/csv.php';