AnonSec Shell
Server IP : 144.76.79.100  /  Your IP : 216.73.216.103   [ Reverse IP ]
Web Server : Apache
System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User : razzlestore ( 1092)
PHP Version : 8.2.29
Disable Function : NONE
Domains : 343 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/razzlestore/outfitsio.com/wp-content/plugins/elementor-pro/modules/checklist/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/razzlestore/outfitsio.com/wp-content/plugins/elementor-pro/modules/checklist/module.php
<?php

namespace ElementorPro\Modules\Checklist;

use Elementor\Core\Isolation\Kit_Adapter_Interface;
use ElementorPro\Base\Module_Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Module extends Module_Base {
	private $module;

	private ?Wordpress_Adapter_Interface $wordpress_adapter;

	private ?Kit_Adapter_Interface $kit_adapter;

	public function __construct( ?Wordpress_Adapter_Interface $wordpress_adapter = null, ?Kit_Adapter_Interface $kit_adapter = null ) {
		if ( ! class_exists( 'Elementor\\Modules\\Checklist\\Module' ) ) {
			return;
		}

		$this->module = \Elementor\Modules\Checklist\Module::instance();
		$this->wordpress_adapter = $wordpress_adapter;
		$this->kit_adapter = $kit_adapter;

		add_filter( 'elementor/checklist/steps', [ $this, 'replace_steps' ], 1 );
	}

	public function get_name() : string {
		return 'e-checklist';
	}

	/**
	 * @param array $steps
	 * @return \Elementor\Modules\Checklist\Steps\Step_Base[]
	 */
	public function replace_steps( array $steps ) : array {
		$formatted_steps = [];

		foreach ( $steps as $step_id => $step ) {
			if ( \Elementor\Modules\Checklist\Steps\Setup_Header::STEP_ID !== $step_id ) {
				$formatted_steps[ $step_id ] = $step;
				continue;
			}

			$header_step = new \ElementorPro\Modules\Checklist\Steps\Setup_Header( $this->module, $this->wordpress_adapter, $this->kit_adapter );
			$formatted_steps[ $header_step->get_id() ] = $header_step;
		}

		return $formatted_steps;
	}
}

Anon7 - 2022
AnonSec Team