Server IP : 15.235.198.142 / Your IP : 216.73.216.149 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/rhodeworks/wp-content/plugins/elementor/modules/checklist/data/endpoints/ |
Upload File : |
<?php namespace Elementor\Modules\Checklist\Data\Endpoints; use Elementor\Data\V2\Base\Endpoint as Endpoint_Base; use Elementor\Modules\Checklist\Module as Checklist_Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class User_Progress extends Endpoint_Base { protected function register() { parent::register(); $this->register_items_route( \WP_REST_Server::EDITABLE ); } public function get_name(): string { return 'user-progress'; } public function get_format(): string { return 'checklist'; } public function get_items( $request ) { return $this->get_checklist_data(); } public function update_items( $request ) { Checklist_Module::instance()->update_user_progress( $request->get_json_params() ); return [ 'data' => 'success', ]; } private function get_checklist_data(): array { $checklist_module = Checklist_Module::instance(); $progress_data = $checklist_module->get_user_progress_from_db(); return [ 'data' => $progress_data, ]; } }