start QA_2_11

This commit is contained in:
Marc Delisle
2007-07-18 15:54:09 +00:00
parent 6147b3565e
commit e2599e32c5
689 changed files with 0 additions and 212947 deletions

View File

@@ -1,29 +0,0 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Set of functions used to build CSV dumps of tables
*
* @version $Id$
*/
/**
*
*/
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';
}
?>