HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpyourdayfloraldesign/wp-content/plugins/pro-elements/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;
	}
}