/plugin/freechat/phpfreechat/data/public/themes/default/ |
H A D | chat.js.tpl.php | 30 $json = new pfcJSON(); variable 32 <?php $nick = $u->getNickname() != '' ? $json->encode($u->getNickname()) : $json->encode($c->nick);… 36 var pfc_nickid = <?php echo $json->encode($u->nickid); ?>; 37 var pfc_version = <?php echo $json->encode($version); ?>; 39 var pfc_title = <?php echo $json->encode($title); ?>; 43 var pfc_nickmarker = <?php echo $json->encode($nickmarker); ?>; 44 var pfc_clock = <?php echo $json->encode($clock); ?>; 46 var pfc_showsmileys = <?php echo $json->encode($showsmileys); ?>; 52 var pfc_debug = <?php echo $json->encode($debug); ?>; 61 var pfc_defaultprivmsg = <?php echo $json->encode($c->privmsg); ?>; [all …]
|
/plugin/freechat/phpfreechat/themes/default/ |
H A D | chat.js.tpl.php | 30 $json = new pfcJSON(); variable 32 <?php $nick = $u->getNickname() != '' ? $json->encode($u->getNickname()) : $json->encode($c->nick);… 36 var pfc_nickid = <?php echo $json->encode($u->nickid); ?>; 37 var pfc_version = <?php echo $json->encode($version); ?>; 39 var pfc_title = <?php echo $json->encode($title); ?>; 43 var pfc_nickmarker = <?php echo $json->encode($nickmarker); ?>; 44 var pfc_clock = <?php echo $json->encode($clock); ?>; 46 var pfc_showsmileys = <?php echo $json->encode($showsmileys); ?>; 52 var pfc_debug = <?php echo $json->encode($debug); ?>; 61 var pfc_defaultprivmsg = <?php echo $json->encode($c->privmsg); ?>; [all …]
|
/plugin/vbsso/includes/ |
H A D | api.php | 33 * @param array $json array 37 function vbsso_listener_verify($json) { argument 48 $settings[$key] = $json[$item['field']]; 60 * @param array $json array 77 …if ($auth->createUser($json[SHAREDAPI_EVENT_FIELD_USERNAME], '', $json[SHAREDAPI_EVENT_FIELD_USERN… 89 * @param array $json array 93 function vbsso_listener_register($json) { argument 116 * @param array $json array 125 $json[SHAREDAPI_EVENT_FIELD_REMEMBERME], $json[SHAREDAPI_EVENT_FIELD_TIMEOUT]); 132 * @param array $json array [all …]
|
/plugin/stopforumspam/_test/ |
H A D | ResponseCheckerTest.php | 22 $json = json_encode($resp); 26 $this->assertEquals(true, $checker->userIsValid($json)); 39 $json = json_encode($resp); 42 $this->assertEquals(false, $checker->userIsValid($json)); 50 $json = json_encode($resp); 53 $this->assertEquals(true, $checker->userIsValid($json)); 61 $json = json_encode($resp); 72 $json = json_encode($resp); 75 $this->assertEquals(true, $checker->userIsValid($json)); 83 $json = json_encode($resp); [all …]
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | ChromePHPHandler.php | 60 protected static $json = [ variable in Monolog\\Handler\\ChromePHPHandler 99 self::$json['rows'] = array_merge(self::$json['rows'], $messages); 124 self::$json['rows'][] = $record['formatted']; 148 self::$json['request_uri'] = $_SERVER['REQUEST_URI'] ?? ''; 151 … $json = Utils::jsonEncode(self::$json, Utils::DEFAULT_JSON_FLAGS & ~JSON_UNESCAPED_UNICODE, true); 152 $data = base64_encode(utf8_encode($json)); 165 … self::$json['rows'][count(self::$json['rows']) - 1] = $this->getFormatter()->format($record); 166 $json = Utils::jsonEncode(self::$json, null, true); 167 $data = base64_encode(utf8_encode($json));
|
/plugin/tagfilter/script/select2/ |
H A D | release.sh | 31 sed -E -e "s/\"version\": \"([0-9\.]+)\",/\"version\": \"$ver\",/g" -i -- bower.json select2.jquery.json component.json composer.json package.json 33 git add bower.json 34 git add select2.jquery.json 35 git add component.json 36 git add composer.json 37 git add package.json [all...] |
/plugin/structtasks/_test/ |
H A D | StructtasksTest.php | 18 * @param string $json base name of the JSON file optional, defaults to $schema 22 protected function loadSchemaJSON($schema, $json = '', $rev = 0) argument 24 if (!$json) $json = $schema; 25 $file = __DIR__ . "/json/$json.struct.json"; 30 $json = file_get_contents($file); 31 $importer = new SchemaImporter($schema, $json);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/ |
H A D | FileCookieJar.php | 51 $json = []; 55 $json[] = $cookie->toArray(); 59 $jsonStr = \GuzzleHttp\json_encode($json); 75 $json = file_get_contents($filename); 76 if (false === $json) { 78 } elseif ($json === '') { 82 $data = \GuzzleHttp\json_decode($json, true); 84 foreach (json_decode($json, true) as $cookie) {
|
/plugin/dlcounter/ |
H A D | syntax.php | 100 $fname = DOKU_INC.'data/counts/download_counts.json'; 101 $json = json_decode( file_get_contents($fname), TRUE ); 111 if( $file != "" && array_key_exists( $file, $json ) ){ 112 $count = $json[$file]; 121 $json = $this->dlcounter_switchKeys($json, true); 123 if( $sort == 'sort' ) ksort($json); 124 else if( $sort == 'rsort' ) krsort($json); 126 $json = $this->dlcounter_switchKeys($json, fals [all...] |
H A D | action.php | 56 $fname = $path.'/download_counts.json'; 57 $json = array(); 59 $json = json_decode( file_get_contents($fname), TRUE ); 63 if( array_key_exists($data['media'], $json) ){ 64 $count = $json[$data['media']]; 67 $json[$data['media']] = $count; 69 file_put_contents( $fname, json_encode($json) );
|
/plugin/freechat/phpfreechat/src/ |
H A D | pfcjson.class.php | 25 var $json = null; variable in pfcJSON 33 $this->json = new Services_JSON(); 39 if ($this->json) 40 return $this->json->encode($v); 47 if ($this->json) 48 return $this->json->decode($v);
|
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/ |
H A D | RequireJsProcess.php | 49 $json = $this->requireJson($this->packages, $this->config); 50 $requireConfig = $this->requireJs($json); 93 $json = array(); 118 $json['packages'][] = $component; 125 $json['shim'][$name] = $shim; 131 $json['config'][$name] = $packageConfig; 136 $json['baseUrl'] = $this->baseUrl; 143 $json = $this->arrayMergeRecursiveDistinct($json, $config); 147 return $json; 192 public function requireJs(array $json = array()) argument [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/ |
H A D | TableDataInsertAllRequestRows.php | 29 public $json; variable in Google\\Service\\Bigquery\\TableDataInsertAllRequestRows 48 public function setJson($json) argument 50 $this->json = $json; 57 return $this->json;
|
/plugin/combo/resources/dictionary/ |
H A D | README.md | 6 * [material-design meta](./material-design-icon-meta.json) - The material design dictionary 7 * [emojis](./emojis.json) - unicode code point to name emoji mapping (to use as icon) 8 * [Carbon](./carbon-icons.json) - list of [32x32 icon](https://carbon-elements.netlify.app/icons/examples/preview/) name of iconify (ie lowercase) to physical icon name 9 * [fad](./fad-icons.json) - list of [fad svg](https://github.com/fefanto/fontaudio/tree/master/svgs) in iconify form 10 * [icomoon](./icomoon-icons.json) - list of [icomoon svg](https://github.com/Keyamoon/IcoMoon-Free/tree/master/SVG) 11 * [cib](./cib-icons.json) - list of [CoreUI Brands icons](https://github.com/coreui/coreui-icons/tree/master/svg/brand) 12 * [Health Icon](./healthicons-icons.json) - list of [HealthIcon](https://raw.githubusercontent.com/resolvetosavelives/healthicons/main/public/icons/meta-data.json)
|
/plugin/showpageafterlogin/ |
H A D | action.php | 71 $json = new JSON(JSON_LOOSE_TYPE); 74 return $json->decode($file); 80 $json = new JSON(); 81 $json = $json->encode($data); 82 file_put_contents(DOKU_PLUGIN . "showpageafterlogin/showpageafterlogincount.json", $json);
|
/plugin/drawio/ |
H A D | action.php | 81 $json = new JSON(); 82 echo $json->encode($access_granted); 126 $json = new JSON(); 130 echo $json->encode(array("content" => "data:image/png;base64,".base64_encode($fc))); 135 $json = new JSON(); 139 echo $json->encode(array("content" => "data:image/svg+xml;base64,".base64_encode($fc))); 148 $json = new JSON(); 161 $json = new JSON(); 165 echo $json->encode(array("content" => "NaN"));
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/ |
H A D | Utils.php | 86 $json = @json_encode($data, $encodeFlags); 87 if (false === $json) { 91 return $json; 94 $json = json_encode($data, $encodeFlags); 95 if (false === $json) { 96 $json = self::handleJsonError(json_last_error(), $data); 99 return $json; 134 $json = json_encode($data, $encodeFlags); 136 if ($json === false) { 140 return $json;
|
/plugin/swarmwebhook/webhooks/ |
H A D | Zapier.php | 9 public function run($json) argument 45 $ok = $this->handleWebhookPayload($json); 57 * @param string $json the original webhooks payload as json 61 protected function handleWebhookPayload($json) argument 73 $lookupData = $this->extractDataFromPayload(json_decode($json, true)); 74 $lookupData['json'] = $json;
|
H A D | IFTTT.php | 13 public function run($json) argument 33 $webhookData = json_decode($json, true); 41 $ok = $this->handleWebhookPayload($webhookData, $json); 79 * @param string $json 83 protected function handleWebhookPayload(array $webhookData, $json) argument 86 $lookupData['json'] = $json;
|
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/ |
H A D | sharedapi.php | 339 function sharedapi_encode_data($key, $json) { argument 340 $data = json_encode($json); 386 $json = sharedapi_accept_data($shared_key); 387 if (is_array($json) && isset($json[SHAREDAPI_EVENT_FIELD_EVENT])) { 389 $ret = call_user_func($callback[$json[SHAREDAPI_EVENT_FIELD_EVENT]], $json); 392 $ret[SHAREDAPI_EVENT_FIELD_ERROR] = $json; 414 $json = array(); 417 $json = ($json) ? $json : SHAREDAPI_WRONG_API_KEY_MESSAGE; 420 …if (is_array($json) && isset($json[SHAREDAPI_EVENT_FIELD_PRODUCT]) && isset($json[SHAREDAPI_EVENT_… 421 …$json[SHAREDAPI_EVENT_FIELD_DATA] = sharedapi_decode_data($key, $json[SHAREDAPI_EVENT_FIELD_DATA]); [all …]
|
/plugin/prosemirror/schema/ |
H A D | Node.php | 117 $json = [ 121 $json['text'] = $this->text; 123 $json['content'] = $this->content; 127 $json['marks'] = $this->marks; 130 $json['attrs'] = $this->attrs; 133 return $json;
|
/plugin/dtable/ |
H A D | action.php |
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/ |
H A D | GoogleCloudDataplexV1StorageFormat.php | 84 public function setJson(GoogleCloudDataplexV1StorageFormatJsonOptions $json) argument 86 $this->json = $json; 93 return $this->json;
|
/plugin/combo/resources/library/bootstrap/ |
H A D | README.md | 12 * Copy the [bootstrapCustomCss.json](./bootstrapStylesheet.json) to `bootstrapLocalCss.json` 18 * [bootstrap.json] is a metadata file with all official bootstrap information 19 * [bootstrapCustom.json] is a metadata file with the [ComboStrap](https://combostrap.com) 16 grid theme.
|
/plugin/jplayer/vendor/robloach/component-installer/ |
H A D | README.md | 11 ``` json 30 ``` json 82 ``` json 104 ``` json 120 ``` json 144 ``` json 181 ``` json 201 ``` json 239 ``` json 276 ### Packages Without Component Support In *composer.json* [all …]
|