/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | json_encode.rst | 1 ``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/tagfilter/_test/ |
H A D | ajax.test.php | 29 $INPUT->set('form', json_encode(array())); 30 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags')); 31 $INPUT->set('flags', json_encode(array())); 32 $INPUT->set('pagesearch', json_encode(array())); 56 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags')); 57 $INPUT->set('flags', json_encode(array())); 58 $INPUT->set('pagesearch', json_encode(array())); 86 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags')); 87 $INPUT->set('flags', json_encode(array())); 88 $INPUT->set('pagesearch', json_encode(arra [all...] |
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/Constraint/ |
H A D | JsonMatchesTest.php | 24 $jsonValue = json_encode(['Mascott' => 'Tux']); 33 …SON' => [true, json_encode(['Mascott' => 'Tux']… 34 …'error syntax' => [false, '{"Mascott"::}', json_encode(['Mascott' =… 35 …'error UTF-8' => [false, json_encode('\xB1\x31'), json_encode(['Mascott' =… 36 …'invalid JSON in class instantiation' => [false, json_encode(['Mascott' =…
|
/plugin/stopforumspam/_test/ |
H A D | ResponseCheckerTest.php | 22 $json = json_encode($resp); 39 $json = json_encode($resp); 50 $json = json_encode($resp); 61 $json = json_encode($resp); 72 $json = json_encode($resp); 83 $json = json_encode($resp); 94 $json = json_encode($resp);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
H A D | json_encode.test | 2 "json_encode" filter 4 {{ "foo"|json_encode|raw }} 5 {{ foo|json_encode|raw }} 6 {{ [foo, "foo"]|json_encode|raw }}
|
/plugin/tagging/action/ |
H A D | main.php | 164 echo json_encode(array_combine($tags, $tags)); 180 echo json_encode(array('status' => 'error', 'msg' => $this->getLang('no_admin'))); 185 echo json_encode(array('status' => 'error', 'msg' => 'Security Token did not match. Possible CSRF attack.')); 190 echo json_encode(array('status' => 'error', 'msg' => 'No page id given.')); 196 echo json_encode(array('status' => 'error', 'msg' => 'No proper input. Give "oldValue" and "newValue"')); 203 echo json_encode(array('status' => 'error', 'msg' => $msg)); 209 echo json_encode(array(
|
/plugin/diagramsnet/ |
H A D | action.php | 85 echo json_encode($result); 90 echo json_encode($result); 109 echo json_encode($result); 113 echo json_encode($result);
|
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Parser/ |
H A D | JsonTest.php | 158 $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/icalevents/vendor/sabre/vobject/tests/VObject/Parser/ |
H A D | JsonTest.php | 159 $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/webdavclient/vendor/sabre/vobject/tests/VObject/Parser/ |
H A D | JsonTest.php | 158 $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/davcal/vendor/sabre/vobject/tests/VObject/Parser/ |
H A D | JsonTest.php | 158 $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/findologicxmlexport/vendor/jms/serializer/tests/Handler/ |
H A D | FormErrorHandlerTest.php | 69 $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/authgooglesheets/vendor/monolog/monolog/src/Monolog/ |
H A D | Utils.php | 86 $json = @json_encode($data, $encodeFlags); 94 $json = json_encode($data, $encodeFlags); 134 $json = json_encode($data, $encodeFlags); 273 $context = "\nContext: " . json_encode($record['context']); 276 $extra = "\nExtra: " . json_encode($record['extra']);
|
/plugin/combo/ComboStrap/ |
H A D | Json.php | 71 return json_encode($jsonArray, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); 132 return json_encode($this->jsonArray, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); 147 return json_encode($this->jsonArray);
|
/plugin/aichat/ |
H A D | action.php | 48 echo json_encode([ 72 echo json_encode([ 93 echo json_encode([
|
/plugin/prosemirror/action/ |
H A D | ajax.php | 107 echo json_encode($responseData); 169 echo json_encode(['error' => $errorMsg]); 192 echo json_encode(['error' => $errorMsg]); 201 echo json_encode($responseData);
|
/plugin/diagrams/action/ |
H A D | mediafile.php | 46 echo json_encode(file_exists($file)); 77 echo json_encode($editable); 123 echo json_encode(auth_quickaclcheck($ns . ':*') >= AUTH_UPLOAD);
|
/plugin/tagfilter/syntax/ |
H A D | filter.php | 311 'data-tags' => json_encode($tagFilters['pagesPerMatchedTags']), 338 'onChange' => 'tagfilter_submit(' . $opt['id'] . ',' . json_encode($opt['ns']) . ',' . json_encode([$opt['pagelistFlags'], $flags]) . ')', 355 //$output .= '<script type="text/javascript">/*<![CDATA[*/ '.'tagfilter_container.tagfilter_'.$opt['id'].' = '.json_encode($tagFilters['tags2']).'; /*!]]>*/</script>'."\n"; 375 'onChange' => 'tagfilter_submit(' . $opt['id'] . ',' . json_encode($opt['ns']) . ',' . json_encode([$opt['pagelistFlags'], $flags]) . ')', 400 . json_encode($links) .
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/ |
H A D | Dashboard.php | 99 'class' => json_encode($result['class']), 100 'method' => json_encode($result['method']) 169 'class' => json_encode(array_values($result['class'])), 170 'method' => json_encode(array_values($result['method']))
|
/plugin/toolbox/ |
H A D | extension.php | 30 fwrite($fh, 'var toolbox_lang = ' . json_encode($lang['js']) . ";\n"); 56 file_put_contents($manifest, json_encode($m, JSON_PRETTY_PRINT));
|
/plugin/ifauthex/_test/ |
H A D | instruction.test.php | 22 $this->assertJsonStringEqualsJsonFile(__DIR__.'/test_page.json', json_encode($calls)); 34 $this->assertJsonStringEqualsJsonFile(__DIR__.'/test_nested.json', json_encode($calls));
|
/plugin/struct/meta/ |
H A D | SchemaImporter.php | 58 $data = ['config' => json_encode($config), 'cols' => [], 'new' => []]; 62 $column['config'] = json_encode($column['config'], JSON_PRETTY_PRINT);
|
/plugin/ajaxedit/ |
H A D | helper.php | 40 echo json_encode($ret); 51 echo json_encode($ret); 109 echo json_encode($ret);
|
/plugin/structodt/meta/ |
H A D | AggregationEditorTableOdt.php | 62 $config = hsc(json_encode($config)); 65 $template = hsc(json_encode($this->template)); 98 'template_string' => hsc(json_encode($this->template)),
|
/plugin/workflow/syntax/ |
H A D | decision.php | 70 $renderer->doc .= 'var wfnamespace = ' . json_encode($wfns) . ';'; 71 $renderer->doc .= 'var wfpageid = ' . json_encode(substr($INFO['id'], strlen($wfns) + 1)) . ';'; 72 $renderer->doc .= 'var wfstatedefs = ' . json_encode($attrs) . ';';
|