!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/smm.picotech.app/public_html/vendor/nwidart/laravel-modules/src/Contracts/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Nwidart\Modules\Contracts;

use 
Nwidart\Modules\Exceptions\ModuleNotFoundException;
use 
Nwidart\Modules\Module;

interface 
RepositoryInterface
{
    
/**
     * Get all modules.
     *
     * @return mixed
     */
    
public function all();

    
/**
     * Get cached modules.
     *
     * @return array
     */
    
public function getCached();

    
/**
     * Scan & get all available modules.
     *
     * @return array
     */
    
public function scan();

    
/**
     * Get modules as modules collection instance.
     *
     * @return \Nwidart\Modules\Collection
     */
    
public function toCollection();

    
/**
     * Get scanned paths.
     *
     * @return array
     */
    
public function getScanPaths();

    
/**
     * Get list of enabled modules.
     *
     * @return mixed
     */
    
public function allEnabled();

    
/**
     * Get list of disabled modules.
     *
     * @return mixed
     */
    
public function allDisabled();

    
/**
     * Get count from all modules.
     *
     * @return int
     */
    
public function count();

    
/**
     * Get all ordered modules.
     * @param string $direction
     * @return mixed
     */
    
public function getOrdered($direction 'asc');

    
/**
     * Get modules by the given status.
     *
     * @param int $status
     *
     * @return mixed
     */
    
public function getByStatus($status);

    
/**
     * Find a specific module.
     *
     * @param $name
     * @return Module|null
     */
    
public function find(string $name);

    
/**
     * Find all modules that are required by a module. If the module cannot be found, throw an exception.
     *
     * @param $name
     * @return array
     * @throws ModuleNotFoundException
     */
    
public function findRequirements($name): array;

    
/**
     * Find a specific module. If there return that, otherwise throw exception.
     *
     * @param $name
     *
     * @return mixed
     */
    
public function findOrFail(string $name);

    public function 
getModulePath($moduleName);

    
/**
     * @return \Illuminate\Filesystem\Filesystem
     */
    
public function getFiles();

    
/**
     * Get a specific config data from a configuration file.
     * @param string $key
     *
     * @param string|null $default
     * @return mixed
     */
    
public function config(string $key$default null);

    
/**
     * Get a module path.
     *
     * @return string
     */
    
public function getPath() : string;

    
/**
     * Find a specific module by its alias.
     * @param string $alias
     * @return Module|void
     */
    
public function findByAlias(string $alias);

    
/**
     * Boot the modules.
     */
    
public function boot(): void;

    
/**
     * Register the modules.
     */
    
public function register(): void;

    
/**
     * Get asset path for a specific module.
     *
     * @param string $module
     * @return string
     */
    
public function assetPath(string $module): string;

    
/**
     * Delete a specific module.
     * @param string $module
     * @return bool
     * @throws \Nwidart\Modules\Exceptions\ModuleNotFoundException
     */
    
public function delete(string $module): bool;

    
/**
     * Determine whether the given module is activated.
     * @param string $name
     * @return bool
     * @throws ModuleNotFoundException
     */
    
public function isEnabled(string $name) : bool;

    
/**
     * Determine whether the given module is not activated.
     * @param string $name
     * @return bool
     * @throws ModuleNotFoundException
     */
    
public function isDisabled(string $name) : bool;
}

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