Home
last modified time | relevance | path

Searched refs:json_encode (Results 26 – 50 of 240) sorted by relevance

12345678910

/plugin/authorstats/
H A Dhelper.php49 $json = json_encode($authors, true);
65 $json = json_encode($pages, true);
/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/yuriigantt/src/
H A DJsonRequest.php72 return json_encode($error);
76 return json_encode($error);
117 return json_encode($responseData);
/plugin/settingstree/
H A Dhelper.php186 if (!file_put_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.meta.json",json_encode($meta))
188 …!file_put_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.defaults.json",json_encode($defaults))
226 …if ($ret = file_put_contents(DOKU_SETTINGS_DIR."/{$pluginname}.json",json_encode($values)) !== fal…
302 return json_encode(array(
/plugin/issuelinks/helper/
H A Ddata.php42 …$this->lockImport($lockfileKey, json_encode(['user' => $_SERVER['REMOTE_USER'], 'status' => 'start…
71 $this->lockImport($lockfileKey, json_encode([
91 $this->lockImport($lockfileKey, json_encode(['status' => 'failed']));
184 io_saveFile($lockFN, json_encode($lockData));
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DStylusFilter.php98 json_encode($asset->getContent()),
99 json_encode($parserOptions),
H A DLessFilter.php144 json_encode($asset->getContent()),
145 json_encode(array_merge($parserOptions, $this->treeOptions))
/plugin/randomtables/action/
H A Dajax.php41 'rows' => json_encode($json)
77 echo json_encode(['result' => $pick]);
/plugin/recommend/helper/
H A Dassignment.php16 … return (bool)file_put_contents(self::$confFile, json_encode($assignments, JSON_PRETTY_PRINT));
36 … return (bool)file_put_contents(self::$confFile, json_encode($remaining, JSON_PRETTY_PRINT));
/plugin/letsencrypt/
H A DLescript.php138 … throw new \RuntimeException("Verification ended with error: " . json_encode($result));
179 …eException("Invalid response code: " . $this->client->getLastCode() . ", " . json_encode($result));
361 $payload64 = Base64UrlSafeEncoder::encode(str_replace('\\/', '/', json_encode($payload)));
362 $protected64 = Base64UrlSafeEncoder::encode(json_encode($protected));
377 return $this->client->post($uri, json_encode($data));
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php90 …w RuntimeException(sprintf('Expected array, but got %s: %s', \gettype($data), json_encode($data)));
122 …(sprintf('Array type cannot have more than 2 parameters, but got %s.', json_encode($type['params']…
162 …throw new RuntimeException(sprintf('Invalid data %s (%s), expected "%s".', json_encode($data), $me…
/plugin/api/
H A Daction.php132 echo $_GET["callback"] . "(" . json_encode($data) . ")";
134 echo json_encode($data);
/plugin/bpmnioeditor/action/
H A Dbpmnioeditor.php57 echo json_encode(['access'=>$result]);
77 echo json_encode($result);
/plugin/aichat/Storage/
H A DSQLiteStorage.php92 'embedding' => json_encode($chunk->getEmbedding(), JSON_THROW_ON_ERROR),
155 [json_encode($vector, JSON_THROW_ON_ERROR), $cluster, $this->similarityThreshold, $limit]
306 $this->db->exec($query, [$lang, json_encode($centroid, JSON_THROW_ON_ERROR)]);
361 $result = $this->db->queryRecord($query, [json_encode($vector, JSON_THROW_ON_ERROR)]);
/plugin/ajaxpeon/
H A Dhelper.php148 fwrite($flearnlist,json_encode($learn_ns_ls));
151 fwrite($flearndata,json_encode($flat_data));
154 fwrite($forev,json_encode($orev_data));
/plugin/dropfiles/action/
H A Dajax.php53 echo json_encode($this->checkFiles());
121 echo json_encode($result);
/plugin/xcom/scripts/
H A Dxml.php40 $params[$p] = json_encode($params[$p]);
89 $retv = json_encode($retv);
/plugin/edittable/renderer/
H A Djson.php38 return json_encode($this->tdata);
47 return json_encode($this->tmeta);
/plugin/do/
H A Daction.php78 echo json_encode($status);
97 echo json_encode($status);
/plugin/struct/meta/
H A DSchemaEditor.php73 $config = json_encode($this->schema->getConfig(), JSON_PRETTY_PRINT);
137 $config = json_encode($col->getType()->getConfig(), JSON_PRETTY_PRINT);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/
H A Djson_encode.test4 {% filter json_encode|raw %}test{% endfilter %}
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/
H A DIgnoreAnnotation.php49 …on expects either a string name, or an array of strings, but got %s.', json_encode($values['value'…
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php324 function json_encode($value, $options = 0, $depth = 512) function
326 $json = \json_encode($value, $options, $depth);
/plugin/davcal/vendor/sabre/http/examples/
H A Dstringify.php36 $request->setBody(json_encode(['foo' => 'bar']));
/plugin/combo/ComboStrap/Api/
H A DMetaManagerHandler.php247 $payload = json_encode($formMetaAssociativeArray);
283 ->addValue(json_encode($persistent))
289 ->addValue(json_encode($current))
299 ->setBody(json_encode($form), Mime::getJson())

12345678910