芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentformpro/src/classes/EntryEditor.php
$exception->getMessage() ], 423); } wp_send_json_success([ 'message' => __('Entry data successfully updated', 'fluentformpro'), 'data' => $entryData ]); } public static function updateEntryResponse($id, $response) { // Find the database Entry First $entry = wpFluent()->table('fluentform_submissions') ->where('id', $id) ->first(); if (!$entry) { throw new \Exception('No Entry Found'); } $origianlResponse = json_decode($entry->response, true); $diffs = []; foreach ($response as $resKey => $resvalue) { if (!isset($origianlResponse[$resKey]) || $origianlResponse[$resKey] != $resvalue) { $diffs[$resKey] = $resvalue; } } if (!$diffs) { return true; } $response = wp_parse_args($response, $origianlResponse); wpFluent()->table('fluentform_submissions') ->where('id', $id) ->update([ 'response' => json_encode($response, JSON_UNESCAPED_UNICODE), 'updated_at' => current_time('mysql') ]); $entries = new Entries(); $entries->updateEntryDiffs($id, $entry->form_id, $diffs); $user = get_user_by('ID', get_current_user_id()); $message = ''; if ($user) { $message = __('Entry data has been updated by ', 'fluentformpro') . $user->user_login; } $logData = [ 'parent_source_id' => $entry->form_id, 'source_type' => 'submission_item', 'source_id' => $entry->id, 'component' => 'EntryEditor', 'status' => 'info', 'title' => 'Entry Data Updated', 'description' => $message, ]; do_action('fluentform/log_data', $logData); return true; } }