Home
last modified time | relevance | path

Searched refs:jsonString (Results 1 – 7 of 7) sorted by relevance

/plugin/combo/ComboStrap/
H A DMetadataFrontmatterStore.php194 $jsonString = self::stripFrontmatterTag($match);
197 if (trim($jsonString) == "") {
203 return json_decode($jsonString, $arrayFormat);
315 $jsonString = "";
316 self::jsonFlatRecursiveEncoding($jsonArray, $jsonString);
322 $decoding = json_decode($jsonString);
326 return $jsonString;
329 private static function jsonFlatRecursiveEncoding(array $jsonProperty, &$jsonString, $level = 0, $endOfFieldCharacter = DOKU_LF, $type = Json::TYPE_OBJECT, $parentType = Json::TYPE_OBJECT) argument
335 $jsonString .= "{";
337 $jsonString
[all...]
H A DJson.php93 static function createFromString($jsonString): Json argument
95 if ($jsonString === null || $jsonString === "") {
98 $jsonArray = json_decode($jsonString, true);
100 throw new ExceptionBadSyntax("The string is not a valid json. Value: ($jsonString)");
111 $jsonString = $this->getJsonString();
112 return json_decode($jsonString);
H A DDatabasePageRow.php430 $jsonString = $this->getFromRow(self::ANALYTICS_ATTRIBUTE);
431 if ($jsonString === null) {
437 return Json::createFromString($jsonString);
/plugin/combo/ComboStrap/Api/
H A DMetaManagerHandler.php119 $jsonString = file_get_contents('php://input');
121 $_POST = Json::createFromString($jsonString)->toArray();
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js1192 var matches=regex.exec(jsonString);
1193 if(matches){jsonString=matches[1];
1194 if(jsonString[0]=="\\"&&jsonString[1]=="n"){jsonString=jsonString.substr(2)
1195 }if(jsonString[jsonString.length-2]=="\\"&&jsonString[jsonString.length-1]=="n"){jsonString=jsonStr…
1196 }}if(jsonString.indexOf("&&&START&&&")){regex=new RegExp(/&&&START&&& (.+) &&&END&&&/);
1197 matches=regex.exec(jsonString);
1198 if(matches){jsonString=matches[1]
1199 }}jsonString="("+jsonString+")";
1201 try{jsonObject=Firebug.context.evaluate(jsonString,null,null,function(){return null
5541 }},parseJSON:function(file){var jsonString=new String(file.responseText);
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js3265 var matches = regex.exec(jsonString);
3269 jsonString = matches[1];
3271 if (jsonString[0] == "\\" && jsonString[1] == "n")
3272 jsonString = jsonString.substr(2);
3274 if (jsonString[jsonString.length-2] == "\\" && jsonString[jsonString.length-1] == "n")
3275 jsonString = jsonString.substr(0, jsonString.length-2);
3278 if (jsonString.indexOf("&&&START&&&"))
3281 matches = regex.exec(jsonString);
3283 jsonString = matches[1];
3287 jsonString = "(" + jsonString + ")";
[all …]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.4.js1202 this.parseJSONString=function(jsonString,originURL){var regex=new RegExp(/^\/\*-secure-([\s\S]*)\*\/\s*$/); argument
1203 var matches=regex.exec(jsonString);
1204 if(matches){jsonString=matches[1];
1205 if(jsonString[0]=="\\"&&jsonString[1]=="n"){jsonString=jsonString.substr(2)
1206 }if(jsonString[jsonString.length-2]=="\\"&&jsonString[jsonStrin
[all...]