/dokuwiki/vendor/composer/ |
D | ClassLoader.php | 174 * @param string $prefix The prefix 180 public function add($prefix, $paths, $prepend = false) argument 183 if (!$prefix) { 199 $first = $prefix[0]; 200 if (!isset($this->prefixesPsr0[$first][$prefix])) { 201 $this->prefixesPsr0[$first][$prefix] = $paths; 206 $this->prefixesPsr0[$first][$prefix] = array_merge( 208 $this->prefixesPsr0[$first][$prefix] 211 $this->prefixesPsr0[$first][$prefix] = array_merge( 212 $this->prefixesPsr0[$first][$prefix], [all …]
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/ |
D | ClassServer.php | 38 public function registerObject($object, $methods, $prefix = null) argument 40 if (is_null($prefix)) { 41 $prefix = get_class($object); 43 $this->_objects[$prefix] = $object; 53 $this->callbacks[$prefix . $this->_delim . $method] = [$prefix, $targetMethod];
|
/dokuwiki/vendor/simplepie/simplepie/ |
D | autoloader.php | 60 $prefix = 'SimplePie\\'; variable 66 $len = strlen($prefix); 67 if (strncmp($prefix, $class, $len) !== 0) {
|
/dokuwiki/_test/tests/inc/ |
D | lang.php | 106 * @param string $prefix sub key that is currently checked (used in recursion) 109 public function testObsolete($english, $foreign, $code, $file, $prefix = '') argument 114 $name = $prefix ? $prefix . $key : $key; 131 * @param string $prefix sub key that is currently checked (used in recursion) 134 public function testPlaceholders($english, $foreign, $code, $file, $prefix = '') argument 148 $name = $prefix ? $prefix . $key : $key;
|
/dokuwiki/lib/plugins/config/core/ |
D | Loader.php | 205 $prefix = $type . Configuration::KEYMARKER . $extname . Configuration::KEYMARKER; 214 $data[$prefix . $type . '_settings_name'] = ['fieldset']; 217 $data[$prefix . $key] = $value; 236 $prefix = $type . Configuration::KEYMARKER . $extname . Configuration::KEYMARKER; 245 $data[$prefix . $key] = $value; 263 $prefix = $type . Configuration::KEYMARKER . $extname . Configuration::KEYMARKER; 277 $strings[$prefix . $key] = $val; 281 $strings[$prefix . $type . '_settings_name'] = ucwords(str_replace('_', ' ', $extname));
|
/dokuwiki/inc/ |
D | load.php | 270 * @param string $prefix 273 protected function prefixStrip(&$string, $prefix) argument 275 if (str_starts_with($string, $prefix)) { 276 $string = substr($string, strlen($prefix));
|
D | ErrorHandler.php | 130 $prefix = self::ERRORCODES[$e->getSeverity()]; 132 $prefix = get_class($e); 136 $prefix . ': ' . $e->getMessage(),
|
D | PassHash.php | 725 $prefix = '6'; 727 $prefix = $opts['prefix']; 734 if ($prefix == '5' && (!defined('CRYPT_SHA256') || CRYPT_SHA256 !== 1)) { 737 if ($prefix == '6' && (!defined('CRYPT_SHA512') || CRYPT_SHA512 !== 1)) { 742 return crypt($clear, '$' . $prefix . '$' . $salt . '$'); 744 return crypt($clear, '$' . $prefix . '$' . $rounds . '$' . $salt . '$');
|
D | Mailer.class.php | 579 $prefix = '[' . $conf['title'] . ']'; 581 $prefix = '[' . PhpString::substr($conf['title'], 0, 20) . '...]'; 584 $prefix = '[' . $conf['mailprefix'] . ']'; 586 if (!str_starts_with($this->headers['Subject'], $prefix)) { 587 $this->headers['Subject'] = $prefix . ' ' . $this->headers['Subject'];
|
D | DifferenceEngine.php | 849 function _lines($lines, $prefix = ' ') { argument 851 echo "$prefix ".$this->_escape($line)."\n"; 1163 function _lines($lines, $prefix=' ', $color="white") { argument 1280 function _lines($lines, $prefix=' ', $color="white") { argument
|
/dokuwiki/vendor/php81_bc/strftime/src/ |
D | php-8.1-strftime.php | 131 $prefix = $match[1]; 152 switch ($prefix) {
|
/dokuwiki/lib/scripts/ |
D | edit.js | 165 if (field.form && field.form.prefix) { 167 opts.push(field.form.prefix.value);
|
D | fileuploader.js | 199 prefix = '&', 218 prefix = (/\?/.test(temp)) ? (/\?$/.test(temp)) ? '' : '&' : '?'; 237 return uristrings.join(prefix)
|
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | Tar.php | 580 $prefix = ''; 594 $prefix = $dir; 607 …st = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $prefix, "");
|
/dokuwiki/lib/tpl/dokuwiki/ |
D | style.ini | 49 ; (with surrounding underscores removed, and the prefix @ini_ added)
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
D | ASN1.php | 1275 $prefix = substr($content, 0, 2) >= 50 ? '19' : '20'; 1276 $content = $prefix . $content;
|