Home
last modified time | relevance | path

Searched refs:json_encode (Results 151 – 175 of 240) sorted by last modified time

12345678910

/plugin/codemirror/
H A Daction.php63 '_data' => 'JSINFO.plugin_codemirror = ' . json_encode($jsinfo),
/plugin/phpipam/
H A Dphpipam-api.php279 return json_encode($this->result);
306 print json_encode($this->result);
700 curl_setopt($this->Connection, CURLOPT_POSTFIELDS, json_encode($params));
716 …st = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->api_key, json_encode($params), MCRYP…
/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));
H A Dutil.php94 echo json_encode(['data' => $msg, 'msg' => $MSG]);
/plugin/issuelinks/services/
H A DAbstractService.php41 $dataToBeSend = json_encode($data);
/plugin/dropfiles/action/
H A Dajax.php53 echo json_encode($this->checkFiles());
121 echo json_encode($result);
/plugin/sentry/
H A DEvent.php186 return json_encode($this->data);
/plugin/tagsections/action/
H A Dajax.php75 echo json_encode($result);
/plugin/telleveryone/
H A Dapi.php26 echo json_encode($arr);
/plugin/webexteamsnotifier/
H A Daction.php70 $json = json_encode($data);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Parser/
H A DJsonTest.php158 $parser = new Json(json_encode($input));
311 $parser = new Json(json_encode($input));
369 fwrite($stream, json_encode($input));
392 $json->parse(json_encode($input), 0);
/plugin/imagecarousel/
H A Dsyntax.php72 $flags['slick'] = json_encode(array_merge(
/plugin/yuriigantt/src/
H A DJsonRequest.php72 return json_encode($error);
76 return json_encode($error);
117 return json_encode($responseData);
/plugin/yuriigantt/src/Driver/
H A DEmbedded.php150 $embedded = json_encode($database, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
/plugin/yuriigantt/src/Views/
H A Ddhtmlxgantt.php73 let database = <?= json_encode($database); ?>;
/plugin/pycode/
H A Daction.php201 $str = json_encode($log_old);
H A Dmethod.php964 $data = json_encode($arr);
/plugin/dlcounter/
H A Daction.php69 file_put_contents( $fname, json_encode($json) );
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonSerializationVisitor.php186 $result = @json_encode($data, $this->options);
/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/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php840 …%s does not accept any values, but got %s.', $originalName, $this->context, json_encode($values)));
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Djson_encode.rst1 ``json_encode``
4 The ``json_encode`` filter returns the JSON representation of a value:
8 {{ data|json_encode() }}
12 Internally, Twig uses the PHP `json_encode`_ function.
17 * ``options``: A bitmask of `json_encode options`_: ``{{
18 data|json_encode(constant('JSON_PRETTY_PRINT')) }}``.
20 ``{{ data|json_encode(constant('JSON_PRETTY_PRINT') b-or constant('JSON_HEX_QUOT') }}``
22 .. _`json_encode`: https://secure.php.net/json_encode target
23 .. _`json_encode options`: https://secure.php.net/manual/en/json.constants.php
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php180 $io->writeln(json_encode($filesInfo, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php69 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
79 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
81 self::assertSame(json_encode([
90 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
92 self::assertSame(json_encode([
119 $data = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
134 $json = json_encode($this->handler->serializeFormToJson($this->visitor, $form, []));
136 self::assertSame(json_encode([
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DError.php253 $name = json_encode($this->filename);

12345678910