!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/phpmyadmin/libraries/classes/Plugins/Export/   drwxr-xr-x
Free 15.6 GB of 61.93 GB (25.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ExportExcel.php (2.85 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Class for exporting CSV dumps of tables for excel
 */

declare(strict_types=1);

namespace 
PhpMyAdmin\Plugins\Export;

use 
PhpMyAdmin\Properties\Options\Groups\OptionsPropertyMainGroup;
use 
PhpMyAdmin\Properties\Options\Groups\OptionsPropertyRootGroup;
use 
PhpMyAdmin\Properties\Options\Items\BoolPropertyItem;
use 
PhpMyAdmin\Properties\Options\Items\HiddenPropertyItem;
use 
PhpMyAdmin\Properties\Options\Items\SelectPropertyItem;
use 
PhpMyAdmin\Properties\Options\Items\TextPropertyItem;
use 
PhpMyAdmin\Properties\Plugins\ExportPluginProperties;

use function 
__;

/**
 * Handles the export for the CSV-Excel format
 */
class ExportExcel extends ExportCsv
{
    
/**
     * @psalm-return non-empty-lowercase-string
     */
    
public function getName(): string
    
{
        return 
'excel';
    }

    protected function 
setProperties(): ExportPluginProperties
    
{
        
$exportPluginProperties = new ExportPluginProperties();
        
$exportPluginProperties->setText('CSV for MS Excel');
        
$exportPluginProperties->setExtension('csv');
        
$exportPluginProperties->setMimeType('text/comma-separated-values');
        
$exportPluginProperties->setOptionsText(__('Options'));

        
// create the root group that will be the options field for
        // $exportPluginProperties
        // this will be shown as "Format specific options"
        
$exportSpecificOptions = new OptionsPropertyRootGroup('Format Specific Options');

        
// general options main group
        
$generalOptions = new OptionsPropertyMainGroup('general_opts');
        
// create primary items and add them to the group
        
$leaf = new TextPropertyItem(
            
'null',
            
__('Replace NULL with:')
        );
        
$generalOptions->addProperty($leaf);
        
$leaf = new BoolPropertyItem(
            
'removeCRLF',
            
__('Remove carriage return/line feed characters within columns')
        );
        
$generalOptions->addProperty($leaf);
        
$leaf = new BoolPropertyItem(
            
'columns',
            
__('Put columns names in the first row')
        );
        
$generalOptions->addProperty($leaf);
        
$leaf = new SelectPropertyItem(
            
'edition',
            
__('Excel edition:')
        );
        
$leaf->setValues(
            [
                
'win' => 'Windows',
                
'mac_excel2003' => 'Excel 2003 / Macintosh',
                
'mac_excel2008' => 'Excel 2008 / Macintosh',
            ]
        );
        
$generalOptions->addProperty($leaf);
        
$leaf = new HiddenPropertyItem('structure_or_data');
        
$generalOptions->addProperty($leaf);
        
// add the main group to the root group
        
$exportSpecificOptions->addProperty($generalOptions);

        
// set the options for the export plugin property item
        
$exportPluginProperties->setOptions($exportSpecificOptions);

        return 
$exportPluginProperties;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.3889 ]--