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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/prettus/l5-repository/src/Prettus/Repository/Generators/   drwxrwxrwx
Free 12.97 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Prettus\Repository\Generators;

/**
 * Class Stub
 * @package Prettus\Repository\Generators
 * @author Anderson Andrade <contato@andersonandra.de>
 */
class Stub
{
    
/**
     * The base path of stub file.
     *
     * @var null|string
     */
    
protected static $basePath null;
    
/**
     * The stub path.
     *
     * @var string
     */
    
protected $path;
    
/**
     * The replacements array.
     *
     * @var array
     */
    
protected $replaces = [];

    
/**
     * The contructor.
     *
     * @param string $path
     * @param array  $replaces
     */
    
public function __construct($path, array $replaces = [])
    {
        
$this->path $path;
        
$this->replaces $replaces;
    }

    
/**
     * Create new self instance.
     *
     * @param  string $path
     * @param  array  $replaces
     *
     * @return self
     */
    
public static function create($path, array $replaces = [])
    {
        return new static(
$path$replaces);
    }

    
/**
     * Set base path.
     *
     * @param  string $path
     *
     * @return void
     */
    
public static function setBasePath($path)
    {
        static::
$basePath $path;
    }

    
/**
     * Set replacements array.
     *
     * @param  array $replaces
     *
     * @return $this
     */
    
public function replace(array $replaces = [])
    {
        
$this->replaces $replaces;

        return 
$this;
    }

    
/**
     * Get replacements.
     *
     * @return array
     */
    
public function getReplaces()
    {
        return 
$this->replaces;
    }

    
/**
     * Handle magic method __toString.
     *
     * @return string
     */
    
public function __toString()
    {
        return 
$this->render();
    }

    
/**
     * Get stub contents.
     *
     * @return string
     */
    
public function render()
    {
        return 
$this->getContents();
    }

    
/**
     * Get stub contents.
     *
     * @return mixed|string
     */
    
public function getContents()
    {
        
$contents file_get_contents($this->getPath());
        foreach (
$this->replaces as $search => $replace) {
            
$contents str_replace('$' strtoupper($search) . '$'$replace$contents);
        }

        return 
$contents;
    }

    
/**
     * Get stub path.
     *
     * @return string
     */
    
public function getPath()
    {
        return static::
$basePath $this->path;
    }

    
/**
     * Set stub path.
     *
     * @param string $path
     *
     * @return self
     */
    
public function setPath($path)
    {
        
$this->path $path;

        return 
$this;
    }
}

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