Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/dba/libraries/export/
Upload File :
Current File : /var/www/html/mmishra/indem/dba/libraries/export/excel.php

<?php
/* $Id: excel.php,v 2.2 2006/04/26 17:49:47 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
 * Set of functions used to build CSV dumps of tables
 */

if (isset($plugin_list)) {
    $plugin_list['excel'] = array(
        'text' => 'strStrucExcelCSV',
        'extension' => 'xls',
        'mime_type' => 'application/vnd.ms-excel',
        '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' => 'strExcelOptions',
        );
} else {
    /* Everything rest is coded in csv plugin */
    require('./libraries/export/csv.php');
}
?>