home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cricao de Sites - 650 Layouts Prontos
/
WebMasters.iso
/
Servidores
/
xampp-win32-1.6.7-installer.exe
/
phpMyAdmin
/
libraries
/
export
/
excel.php
< prev
next >
Wrap
PHP Script
|
2008-06-23
|
1KB
|
33 lines
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Set of functions used to build CSV dumps of tables
*
* @version $Id: excel.php 11326 2008-06-17 21:32:48Z lem9 $
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
*
*/
if (isset($plugin_list)) {
$plugin_list['excel'] = array(
'text' => 'strStrucExcelCSV',
'extension' => 'csv',
'mime_type' => 'text/comma-separated-values',
'options' => array(
array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
array('type' => 'select', 'name' => 'edition', 'values' => array('win' => 'Windows', 'mac' => 'Excel 2003 / Macintosh'), 'text' => 'strExcelEdition'),
array('type' => 'hidden', 'name' => 'data'),
),
'options_text' => 'strOptions',
);
} else {
/* Everything rest is coded in csv plugin */
require './libraries/export/csv.php';
}
?>