[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
modules
/
checklist
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 data
SET
[ DEL ]
📁 steps
SET
[ DEL ]
📄 checklist-module-interface.php
654 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.php
7,377 B
SET
[ EDIT ]
|
[ DEL ]
📄 steps-manager.php
5,304 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: checklist-module-interface.php
<?php namespace Elementor\Modules\Checklist; use Elementor\Core\Isolation\Wordpress_Adapter; use Elementor\Core\Isolation\Elementor_Adapter; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } interface Checklist_Module_Interface { public function get_name(): string; public function get_user_progress_from_db(): array; public function get_step_progress( $step_id ): ?array; public function set_step_progress( $step_id, $step_progress ): void; public function get_steps_manager(): Steps_Manager; public function get_wordpress_adapter(): Wordpress_Adapter; public function get_elementor_adapter(): Elementor_Adapter; }