| /plugin/zwidoku/ |
| H A D | utils.php | 31 $replacements[ 0] = 'a'; 32 $replacements[ 1] = 'e'; 33 $replacements[ 2] = 'i'; 34 $replacements[ 3] = 'o'; 35 $replacements[ 4] = 'u'; 36 $replacements[ 5] = 'ae'; 37 $replacements[ 6] = 'c'; 38 $replacements[ 7] = 'ss'; 39 $replacements[ 8] = '-'; 40 $replacements[ 9] = ':'; [all …]
|
| H A D | getEncyc.php | 76 $replacements[ 0] = 'a'; 77 $replacements[ 1] = 'e'; 78 $replacements[ 2] = 'i'; 79 $replacements[ 3] = 'o'; 80 $replacements[ 4] = 'u'; 81 $replacements[ 5] = 'ae'; 82 $replacements[ 6] = 'c'; 83 $replacements[ 7] = 'ss'; 84 $replacements[ 8] = '-'; 85 $replacements[ 9] = ':'; [all …]
|
| /plugin/swiftmail/Swift/Plugin/ |
| D | Decorator.php | 29 protected $replacements; variable in Swift_Plugin_Decorator 50 public function __construct($replacements=null) argument 52 $this->setReplacements($replacements); 119 $replacements = (array)$this->replacements->getReplacementsFor($to); 126 $this->recursiveReplace($message, $replacements, $this->store); 134 protected function recursiveReplace(Swift_Message_Mime $mime, $replacements, &$store) argument 141 if (is_string($value) && ($replaced = $this->replace($replacements, $value)) != $value) 151 && ($att_replaced = $this->replace($replacements, $att_value)) != $att_value) 166 && is_string($body) && ($replaced = $this->replace($replacements, $body)) != $body) 180 $this->recursiveReplace($child, $replacements, $store["children"][$id]); [all …]
|
| /plugin/swiftmail/Swift/Plugin/Decorator/ |
| D | Replacements.php | 26 protected $replacements; variable in Swift_Plugin_Decorator_Replacements 32 public function __construct($replacements = array()) argument 34 $this->setReplacements($replacements); 41 public function addReplacements($address, $replacements) argument 43 $this->replacements[strtolower($address)] = (array)$replacements; 50 public function setReplacements($replacements) argument 52 $this->replacements = array_change_key_case((array) $replacements, CASE_LOWER); 60 return $this->replacements; 71 if (array_key_exists($address, $this->replacements)) 73 return (array)$this->replacements[$address];
|
| /plugin/dev/ |
| D | Skeletor.php | 139 $replacements = $this->actionReplacements($options); 145 $replacements['@@PLUGIN_COMPONENT_NAME@@'] = $class; 146 $replacements['@@SYNTAX_COMPONENT_NAME@@'] = $self; 147 $this->loadSkeleton($type . '.php', $path, $replacements); 168 $replacements = ['@@TEST@@' => $test]; 169 … $this->loadSkeleton('_test/StandardTest.php', '_test/' . $test . 'Test.php', $replacements); 212 * @param array $replacements override defaults 215 protected function prepareReplacements($replacements = []) argument 230 return array_merge($data, $replacements); 269 * @param array $replacements Non-default replacements to use [all …]
|
| /plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/ |
| D | PsrLogMessageProcessor.php | 52 $replacements = []; 60 $replacements[$placeholder] = $val; 65 $replacements[$placeholder] = (string) $val; 67 … $replacements[$placeholder] = $val->format($this->dateFormat ?: static::SIMPLE_DATE); 70 $replacements[$placeholder] = '[object '.Utils::getClass($val).']'; 72 $replacements[$placeholder] = 'array'.Utils::jsonEncode($val, null, true); 74 $replacements[$placeholder] = '['.gettype($val).']'; 82 $record['message'] = strtr($record['message'], $replacements);
|
| /plugin/bureaucracy-au/helper/ |
| D | field.php | 387 $replacements = array(); // check if empty to prevent php 5.3 warning 389 $replacements = array_combine($pregs[0], $pregs[2]); 394 $replacements = array_map('hsc', $replacements); 397 …if(isset($replacements['@@LABEL@@'])) $replacements['@@LABEL@@'] = hsc($replacements['@@LABEL@… 398 …if(isset($replacements['@@DISPLAY@@'])) $replacements['@@DISPLAY@@'] = hsc($replacements['@@DISPLA… 402 if(isset($replacements['@@DISPLAY@@']) && !isset($params['optional'])){ 403 $replacements['@@DISPLAY@@'] .= ' <sup>*</sup>'; 405 $val = str_replace(array_keys($replacements), array_values($replacements), $val);
|
| /plugin/bureaucracyau/helper/ |
| D | field.php | 387 $replacements = array(); // check if empty to prevent php 5.3 warning 389 $replacements = array_combine($pregs[0], $pregs[2]); 394 $replacements = array_map('hsc', $replacements); 397 …if(isset($replacements['@@LABEL@@'])) $replacements['@@LABEL@@'] = hsc($replacements['@@LABEL@… 398 …if(isset($replacements['@@DISPLAY@@'])) $replacements['@@DISPLAY@@'] = hsc($replacements['@@DISPLA… 402 if(isset($replacements['@@DISPLAY@@']) && !isset($params['optional'])){ 403 $replacements['@@DISPLAY@@'] .= ' <sup>*</sup>'; 405 $val = str_replace(array_keys($replacements), array_values($replacements), $val);
|
| /plugin/bureaucracy/helper/ |
| D | field.php | 387 $replacements = array(); // check if empty to prevent php 5.3 warning 389 $replacements = array_combine($pregs[0], $pregs[2]); 394 $replacements = array_map('hsc', $replacements); 397 …if(isset($replacements['@@LABEL@@'])) $replacements['@@LABEL@@'] = hsc($replacements['@@LABEL@… 398 …if(isset($replacements['@@DISPLAY@@'])) $replacements['@@DISPLAY@@'] = hsc($replacements['@@DISPLA… 402 if(isset($replacements['@@DISPLAY@@']) && !isset($params['optional'])){ 403 $replacements['@@DISPLAY@@'] .= ' <sup>*</sup>'; 405 $val = str_replace(array_keys($replacements), array_values($replacements), $val);
|
| /plugin/ckgedit/scripts/ |
| D | css6.php | 199 function css_ckg_applystyle($css, $replacements) { argument 203 foreach((array) $replacements as $key => $value) { 208 $replacements[$key] = $lkey; 212 $css = strtr($css, $replacements); 231 $replacements = array(); // placeholder => value 247 …$replacements = array_merge($replacements, css_ckg_fixreplacementurls($data['replacements'],$webba… 265 …$replacements = array_merge($replacements, css_ckg_fixreplacementurls($data['replacements'],$webba… 271 'replacements' => $replacements 280 function css_ckg_fixreplacementurls($replacements, $location) { argument 281 foreach($replacements as $key => $value) { [all …]
|
| /plugin/epub/scripts/ |
| D | css3.php | 192 function css_applystyle($css, $replacements) { argument 196 foreach((array) $replacements as $key => $value) { 201 $replacements[$key] = $lkey; 205 $css = strtr($css, $replacements); 224 $replacements = array(); // placeholder => value 240 …$replacements = array_merge($replacements, css_fixreplacementurls($data['replacements'],$webbase)); 258 …$replacements = array_merge($replacements, css_fixreplacementurls($data['replacements'],$webbase)); 264 'replacements' => $replacements 273 function css_fixreplacementurls($replacements, $location) { argument 274 foreach($replacements as $key => $value) { [all …]
|
| /plugin/google_adsense2/ |
| D | code.php | 192 $replacements[0] = $gads_settings['google_ad_client']; 194 $replacements[1] = $gads_settings['google_color_border']; 196 $replacements[2] = $gads_settings['google_color_bg']; 198 $replacements[3] = $gads_settings['google_color_link']; 200 $replacements[4] = $gads_settings['google_color_url']; 202 $replacements[5] = $gads_settings['google_color_text']; 205 $obj .= preg_replace($patterns, $replacements, $page);
|
| /plugin/freechat/phpfreechat/src/proxies/ |
| D | censor.class.php | 52 $replacements = array(); 59 $replacements[] = "'\\1'.str_repeat('$replaceby',strlen('\\2')).'\\3'"; 65 $replacements[] = str_repeat($replaceby,strlen($w)); 68 $param = preg_replace($patterns, $replacements, $param);
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Operators/ |
| D | ValidLogicalOperatorsSniff.php | 63 $replacements = array( 69 if (isset($replacements[$operator]) === false) { 76 $replacements[$operator],
|
| /plugin/newpagetemplate/lang/en/ |
| D | howto.txt | 1 …nd line options.: ''Ini file'', ''Template'', ''Page id'', and ''User replacements''. These optio… 3 …replacements'' are the ''newpagevars'' that are explained in the [[doku>plugin:newpagetemplate#usa…
|
| /plugin/latexport/implementation/ |
| D | decorator.php | 96 $replacements[ 0] = 'a'; 97 $replacements[ 1] = 'e'; 98 $replacements[ 2] = 'i'; 99 $replacements[ 3] = 'o'; 100 $replacements[ 4] = 'u'; 101 $replacements[ 5] = 'ae'; 102 $replacements[ 6] = 'c'; 103 $replacements[ 7] = 'ss'; 104 $replacements[ 8] = '-'; 105 $replacements[ 9] = ':'; [all …]
|
| /plugin/recommend/helper/ |
| D | mail.php | 13 * @param array $replacements 17 public function sendMail($recipient, $sender, $replacements = []) argument 32 $mailer->setBody($mailtext, $replacements);
|
| /plugin/advanced/lang/en/config/ |
| D | styleini.txt | 3 …[doku>devel:css|CSS]] styles. It has two sections: [stylesheets] and [replacements] described belo… 15 === [replacements] === 17 …holders in the loaded stylesheets which are configured through the ''[replacements]'' section in t… 19 These replacements can also be used as [[doku>devel:less#accessing_styleini_placeholders|LESS varia…
|
| /plugin/bb4dw/ |
| D | templating.php | 144 $replacements = []; 151 $replacements[] = $value; 154 return preg_replace($patterns, $replacements, $result);
|
| /plugin/aichat/vendor/vanderlee/php-sentence/src/ |
| D | Sentence.php | 44 private $replacements = []; variable in Vanderlee\\Sentence\\Sentence 69 $this->replacements = []; 76 $this->replacements[$index] = $number; 96 foreach ($this->replacements as $index => $number) {
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
| D | UriTemplate.php | 103 $replacements = []; 197 $replacements[] = $expanded; 200 $ret = implode($joiner, $replacements);
|
| /plugin/publistf/bib2tpl/ |
| D | bibtex_converter.php | 455 $replacements = array(); 465 $replacements []= $value; 469 $replacements []= call_user_func($this->sanitise, $value); 473 return preg_replace($patterns, $replacements, $result);
|
| /plugin/publistx/bib2tpl/ |
| D | bibtex_converter.php | 451 $replacements = array(); 460 $replacements []= $value; 464 $replacements []= call_user_func($this->sanitise, $value); 468 return preg_replace($patterns, $replacements, $result);
|
| /plugin/mytemplate/ |
| D | action.php | 268 $replacements = 1; 269 for ($pass = 0; $replacements != 0 && ($maxpasses == -1 || $pass <= $maxpasses); $pass++) { 271 $replacements = 0; 355 $replacements++;
|
| /plugin/selfmeasurement/ |
| D | style.ini | 1 [replacements] section
|