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 >
PHP Script  |  2008-06-23  |  1KB  |  33 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * Set of functions used to build CSV dumps of tables
  5.  *
  6.  * @version $Id: excel.php 11326 2008-06-17 21:32:48Z lem9 $
  7.  */
  8. if (! defined('PHPMYADMIN')) {
  9.     exit;
  10. }
  11.  
  12. /**
  13.  *
  14.  */
  15. if (isset($plugin_list)) {
  16.     $plugin_list['excel'] = array(
  17.         'text' => 'strStrucExcelCSV',
  18.         'extension' => 'csv',
  19.         'mime_type' => 'text/comma-separated-values',
  20.         'options' => array(
  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'),
  25.             ),
  26.         'options_text' => 'strOptions',
  27.         );
  28. } else {
  29.     /* Everything rest is coded in csv plugin */
  30.     require './libraries/export/csv.php';
  31. }
  32. ?>
  33.