Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / libraries / export / excel.php
blob5df0b3fe392e45bcf954aaecaa883269b7c4f0a4
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 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /**
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'),
26 'options_text' => 'strOptions',
28 } else {
29 /* Everything rest is coded in csv plugin */
30 require './libraries/export/csv.php';