Home
last modified time | relevance | path

Searched refs:replacement (Results 1 – 10 of 10) sorted by last modified time

/dokuwiki/inc/
H A Dtemplate.php604 * @var string $replacement
614 $caption = sprintf($caption, $replacement);
674 'replacement' => ''
830 * This code was suggested as replacement for the usual breadcrumbs.
H A Dutf8.php109 function utf8_substr_replace($string, $replacement, $start, $length = 0)
112 return PhpString::substr_replace($string, $replacement, $start, $length);
108 utf8_substr_replace($string, $replacement, $start, $length = 0) global() argument
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php42 protected $replacement = ''; variable in dokuwiki\\Menu\\Item\\AbstractItem
75 * is used to look up the translation in the main language file and, if used, the replacement
88 $label = sprintf($label, $this->replacement);
261 'replacement' => $this->replacement
H A DImgBackto.php22 $this->replacement = $ID;
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php197 $replacement = $windows_1252_specials[$codepoint];
199 $replacement = SimplePie_Misc::codepoint_to_utf8($codepoint);
207 $this->data = substr_replace($this->data, $replacement, $this->position - $consumed_length, $consumed_length);
208 $this->position += strlen($replacement) - $consumed_length;
/dokuwiki/vendor/geshi/geshi/
H A DBUGS18 - The result is built by string replacement instead of by building another string based
H A DCHANGELOG694 - Fixed tab replacement code not generating the correct number of spaces in
/dokuwiki/inc/Utf8/
H A DPhpString.php39 * Unicode aware replacement for strlen()
168 * Unicode aware replacement for substr_replace()
171 * @param string $replacement the replacement
175 * replacement into string at the given start offset.
181 public static function substr_replace($string, $replacement, $start, $length = 0)
185 $ret .= $replacement;
192 * Unicode aware replacement for ltrim()
212 * Unicode aware replacement for rtrim()
232 * Unicode aware replacement fo
190 substr_replace($string, $replacement, $start, $length = 0) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md65 - New class `SimplePie\SimplePie` as a replacement for class `SimplePie`
66 - New method `SimplePie\Misc::get_default_useragent()` as a replacement for constant `SIMPLEPIE_USERAGENT`
/dokuwiki/lib/scripts/
H A Dfileuploader.js436 function r(name, replacement){ message = message.replace(name, replacement); } argument