Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 14 of 14) sorted by path

/dokuwiki/inc/
H A 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
H A DErrorHandler.php130 $prefix = self::ERRORCODES[$e->getSeverity()];
132 $prefix = get_class($e);
136 $prefix . ': ' . $e->getMessage(),
H A DMailer.class.php576 // add prefix to subject
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'];
H A DPassHash.php95 $magic = ['prefix' => $m[1], 'rounds' => $m[2]];
409 $salt = $itoa64[$compute] . $salt; // prefix iteration count
695 * - SHA-2 with 256-bit output for prefix $5$
696 * - SHA-2 with 512-bit output for prefix $6$ (default)
700 * @param array $opts ('rounds' => rounds for sha256/sha512, 'prefix' => selected method from SHA-2 family)
706 if (empty($opts['prefix'])) {
707 $prefix = '6';
709 $prefix = $opts['prefix'];
716 if ($prefix
[all...]
/dokuwiki/lib/plugins/config/core/
H A 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/lib/scripts/
H A Dedit.js165 if (field.form && field.form.prefix) {
166 // we need to look in prefix context
167 opts.push(field.form.prefix.value);
H A Dfileuploader.js199 prefix = '&',
218 prefix = (/\?/.test(temp)) ? (/\?$/.test(temp)) ? '' : '&' : '?';
237 return uristrings.join(prefix)
/dokuwiki/lib/tpl/dokuwiki/
H A Dstyle.ini49 ; (with surrounding underscores removed, and the prefix @ini_ added)
/dokuwiki/vendor/composer/
H A DClassLoader.php69 * Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
171 * Registers a set of PSR-0 directories for a given prefix, either
172 * appending or prepending to the ones previously set for this prefix.
174 * @param string $prefix The prefix
180 public function add($prefix, $paths, $prepend = false)
183 if (!$prefix) {
199 $first = $prefix[0];
200 if (!isset($this->prefixesPsr0[$first][$prefix])) {
201 $this->prefixesPsr0[$first][$prefix]
188 add($prefix, $paths, $prepend = false) global() argument
237 addPsr4($prefix, $paths, $prepend = false) global() argument
284 set($prefix, $paths) global() argument
304 setPsr4($prefix, $paths) global() argument
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A 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/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1275 $prefix = substr($content, 0, 2) >= 50 ? '19' : '20';
1276 $content = $prefix . $content;
/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php59 // project-specific namespace prefix
60 $prefix = 'SimplePie\\'; variable
62 // base directory for the namespace prefix
65 // does the class use the namespace prefix?
66 $len = strlen($prefix);
67 if (strncmp($prefix, $class, $len) !== 0) {
75 // replace the namespace prefix with the base directory, replace namespace
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php135 * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
136 * the prefix will be stripped. It is recommended to give prefixes with a trailing slash.
148 * @param int|string $strip either the number of path components or a fixed prefix to strip
533 $prefix = '';
547 $prefix = $dir;
560 $data_last = pack("a1a100a6a2a32a32a8a8a155a12", $typeflag, '', 'ustar', '', '', '', '', '', $prefix, "");
625 if (trim($header['prefix'])) {
626 $return['filename'] = trim($header['prefix']).'/'.$return['filename'];
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php24 /** @var array PSR-3 compatible loglevels and their prefix, color, output channel, enabled status */