Home
last modified time | relevance | path

Searched refs:json_encode (Results 51 – 75 of 240) sorted by last modified time

12345678910

/plugin/deeplautotranslate/
H A Daction.php440 $raw_json = json_encode($content);
456 $raw_json = json_encode($content);
/plugin/prosemirror/
H A Drenderer.php89 $this->doc = json_encode($this->nodestack->doc(), JSON_PRETTY_PRINT);
431 $json = json_encode($this->nodestack->doc());
/plugin/prosemirror/action/
H A Dajax.php116 echo json_encode($responseData);
179 echo json_encode(['error' => $errorMsg]);
202 echo json_encode(['error' => $errorMsg]);
211 echo json_encode($responseData);
/plugin/do/
H A Daction.php78 echo json_encode($status);
97 echo json_encode($status);
/plugin/ifauthex/_test/
H A Dinstruction.test.php22 $this->assertJsonStringEqualsJsonFile(__DIR__.'/test_page.json', json_encode($calls));
34 $this->assertJsonStringEqualsJsonFile(__DIR__.'/test_nested.json', json_encode($calls));
/plugin/imgpaste/
H A Daction.php79 echo json_encode([
/plugin/semantic/
H A Daction.php108 print json_encode($json_ld);
125 "_data" => json_encode($this->helper->getWebSite(), JSON_PRETTY_PRINT),
151 "_data" => json_encode($json_ld, JSON_PRETTY_PRINT),
/plugin/edittable/renderer/
H A Djson.php38 return json_encode($this->tdata);
47 return json_encode($this->tmeta);
/plugin/pubmed2020/classes/
H A Dcache.php358 if (io_saveFile($path,json_encode($array))) {
/plugin/linksuggest/
H A Daction.php147 echo json_encode([
242 echo json_encode([
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DJSON.php55 public static function stringify(...$args/* inherit from json_encode */)
61 $string = \json_encode(...$args);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Serializers/
H A DSmartSerializer.php39 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
H A DArrayToJSONSerializer.php38 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
H A DEverythingToJSONSerializer.php35 $data = json_encode($data, JSON_PRESERVE_ZERO_FRACTION + JSON_INVALID_UTF8_SUBSTITUTE);
/plugin/elasticsearch/cli/
H A Dimg.php69 echo json_encode($data, JSON_PRETTY_PRINT);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc60 By using an explicit stdClass object, we can force the `json_encode` parser to
H A Drelease-notes.asciidoc403 * Fix `json_encode` for unicode(emoji) characters
H A Dsearch-operations.asciidoc67 print_r(json_encode($params['body']));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md261 - Fix `json_encode` for unicode(emoji) characters [856](https://github.com/elastic/elasticsearch-php/pull/856)
/plugin/elasticsearch/vendor/react/promise/src/
H A DUnhandledRejectionException.php22 $message = \sprintf('Unhandled Rejection: %s', \json_encode($reason));
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php748 return json_encode($body);
770 // added json_encode to convert into a string
771 return new $errorClass(json_encode($response['body']), (int) $response['status']);
785 // added json_encode to convert into a string
786 $original = new $errorClass(json_encode($response['body']), $response['status']);
791 // added json_encode to convert into a string
792 $original = new $errorClass(json_encode($response['body']), $response['status']);
796 $errorEncoded = json_encode($errorEncoded);
804 $responseBody = json_encode($responseBody);
/plugin/achart/
H A Dsyntax.php157 $newJson=json_encode($jsonData,JSON_NUMERIC_CHECK);
/plugin/ckgedit/action/
H A Diwiki.php42 echo json_encode($a);
H A Dmeta.php230 echo json_encode($result);
/plugin/tagfilter/
H A Daction.php210 echo json_encode(['id' => $tagfilter_id, 'text' => $text]);

12345678910