entryService = $entryService; } /** * @param WP_REST_Request $data * * @return WP_REST_Response * * @throws NotFoundException * @throws InvalidArgumentException|ForbiddenException */ public function handle(WP_REST_Request $data): WP_REST_Response { // Verify the nonce Sanitizer::verifyNonce($data->get_header('X-WP-Nonce')); // Check if the entry ID is provided if (empty($data->get_params())) { throw new InvalidArgumentException( BackendStrings::getExceptionStrings()['entry_id_required'] ); } $entryId = Sanitizer::sanitizeId($data->get_param('id')); $entry = $this->entryService->getEntryManager()->getEntry($entryId); $entryArray = $entry->toArray(); $entryFields = $this->entryService->getEntryFieldManager()->getEntryFields([$entryArray]); return new WP_REST_Response([ 'entry' => $entryArray, 'fields' => $entryFields, ], 200); } }