Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/vendor/composer/
DClassLoader.php174 * @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/
DClassServer.php38 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/
Dautoloader.php60 $prefix = 'SimplePie\\'; variable
66 $len = strlen($prefix);
67 if (strncmp($prefix, $class, $len) !== 0) {
/dokuwiki/_test/tests/inc/
Dlang.php106 * @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/
DLoader.php205 $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/
Dload.php270 * @param string $prefix
273 protected function prefixStrip(&$string, $prefix) argument
275 if (str_starts_with($string, $prefix)) {
276 $string = substr($string, strlen($prefix));
DErrorHandler.php130 $prefix = self::ERRORCODES[$e->getSeverity()];
132 $prefix = get_class($e);
136 $prefix . ': ' . $e->getMessage(),
DPassHash.php725 $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 . '$');
DMailer.class.php579 $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'];
DDifferenceEngine.php849 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/
Dphp-8.1-strftime.php131 $prefix = $match[1];
152 switch ($prefix) {
/dokuwiki/lib/scripts/
Dedit.js165 if (field.form && field.form.prefix) {
167 opts.push(field.form.prefix.value);
Dfileuploader.js199 prefix = '&',
218 prefix = (/\?/.test(temp)) ? (/\?$/.test(temp)) ? '' : '&' : '?';
237 return uristrings.join(prefix)
/dokuwiki/vendor/splitbrain/php-archive/src/
DTar.php580 $prefix = '';
594 $prefix = $dir;
607 …st = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $prefix, "");
/dokuwiki/lib/tpl/dokuwiki/
Dstyle.ini49 ; (with surrounding underscores removed, and the prefix @ini_ added)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
DASN1.php1275 $prefix = substr($content, 0, 2) >= 50 ? '19' : '20';
1276 $content = $prefix . $content;