芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/public_html/wp-content/plugins/ninja-forms/includes/Routes/Telemetry.php
'POST', 'callback' => [ $this, 'nf_be_store_data' ], 'permission_callback' => [ $this, 'nf_be_store_data_permission_callback' ] )); } } // Security check for the rest route function nf_be_store_data_permission_callback() { return is_user_logged_in(); } // Action for the REST route function nf_be_store_data($request) { $data = json_decode($request['data'], true); if(!$data || $data[2] <= 0) { return new WP_REST_Response('Invalid data', 400); } $data[] = get_current_user_id(); $stored_data = get_option('nf_be_data', []); $stored_data[] = $data; update_option('nf_be_data', $stored_data); return new WP_REST_Response('Data stored', 200); } }