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.221.240.14
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/Theme/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/modules/Theme/ModuleProvider.php
<?php
namespace Modules\Theme;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\View;
use League\Flysystem\Config;
use Themes\Base\ThemeProvider;

class ModuleProvider extends \Modules\ModuleServiceProvider
{
    public function boot(Request $request){


        if(!is_installed() || strpos($request->path(), 'install') !== false) return false;

        \Illuminate\Support\Facades\Config::set('bc.active_theme', env('BC_DEFAULT_THEME','base'));

        //	 load Theme overwrite
	    $active = ThemeManager::current();

	    if(strtolower($active) != "base"){
            View::addLocation(base_path("themes".DIRECTORY_SEPARATOR.ucfirst($active)));
            // Load modules views
            $this->loadModuleViews($active);
        }

        // Base Theme require
        View::addLocation(base_path(DIRECTORY_SEPARATOR."themes".DIRECTORY_SEPARATOR."Base"));

	    // Load modules views
        $this->loadModuleViews('base');
    }
    protected function loadModuleViews($theme){

        $listModule = array_map('basename', File::directories(base_path('modules')));

        foreach ($listModule as $module) {

            if (is_dir(base_path('themes/'.ucfirst($theme) .'/'. $module))) {
                $this->loadViewsFrom(base_path('themes/'.ucfirst($theme) .'/'. $module), $module);
            }
        }

        if (is_dir(base_path('themes/'.ucfirst($theme).'/Layout'))) {
            $this->loadViewsFrom(base_path('themes/'.ucfirst($theme).'/Layout'), 'Layout');
        }
    }
    public function register()
    {
        $this->app->register(\Modules\Theme\RouterServiceProvider::class);
//        Base Theme require
	    $this->app->register(ThemeProvider::class);

//	    load Theme overwrite
	    $class = \Modules\Theme\ThemeManager::currentProvider();
        if(class_exists($class)){
            $this->app->register($class);
        }

    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit