Mini Shell Moded By TiGER HeX
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
var
/
www
/
ridazz
/
notadmin
/
libraries
/
export
/
Linux midnightridazz 4.19.0-11-cloud-amd64 #1 SMP Debian 4.19.146-1 (2020-09-17) x86_64
Upload File :
New :
File
Dir
//var/www/ridazz/notadmin/libraries/export/excel.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Set of functions used to build CSV dumps of tables * * @package phpMyAdmin-Export-CSV * @version $Id$ */ 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' => 'removeCRLF', 'text' => 'strRemoveCRLF'), array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'), array( 'type' => 'select', 'name' => 'edition', 'values' => array( 'win' => 'Windows', 'mac_excel2003' => 'Excel 2003 / Macintosh', 'mac_excel2008' => 'Excel 2008 / Macintosh'), 'text' => 'strExcelEdition'), array('type' => 'hidden', 'name' => 'data'), ), 'options_text' => 'strOptions', ); } else { /* Everything rest is coded in csv plugin */ require './libraries/export/csv.php'; } ?>