Home
last modified time | relevance | path

Searched refs:level (Results 1 – 24 of 24) sorted by relevance

/dokuwiki/lib/plugins/acl/
H A Dremote.php36 * @param int $level The permission level to set
40 public function addAcl($scope, $user, $level)
51 return $apa->addOrUpdateACL($scope, $user, $level);
67 addAcl($scope, $user, $level) global() argument
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DPSR3CLIv3.php20 public function log($level, string|\Stringable $message, array $context = []): void argument
22 $this->logMessage($level, $message, $context);
H A DBase.php82 /** @var string default log level */
166 'Minimum level of messages to display. Default is ' . $this->colors->wrap($this->logdefault, Colors::C_CYAN) . '. ' .
169 'level'
192 $level = $this->options->getOpt('loglevel', $this->logdefault);
193 $this->setLogLevel($level);
225 * Set the current log level
227 * @param string $level
229 public function setLogLevel($level)
231 if (!isset($this->loglevel[$level])) $this->fatal('Unknown log level');
223 logMessage($level, $message, array $context = array()) global() argument
[all...]
H A DCLI.php119 * @param string $level
123 public function log($level, $message, array $context = array()) argument
125 $this->logMessage($level, $message, $context);
/dokuwiki/inc/parser/
H A Dxhtmlsummary.php43 * @param int $level
47 public function header($text, $level, $pos, $returnonly = false)
53 $this->doc .= DOKU_LF . '<h' . $level . '>';
55 $this->doc .= "</h$level>" . DOKU_LF;
59 public function section_open($level)
39 header($text, $level, $pos) global() argument
50 section_open($level) global() argument
H A Dmetadata.php140 * @param int $level the nesting level
142 public function toc_additem($id, $text, $level)
147 if ($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']) {
153 'level' => $level - $conf['toptoclevel'] + 1
162 * @param int $level header level
165 public function header($text, $level,
137 toc_additem($id, $text, $level) global() argument
160 header($text, $level, $pos) global() argument
269 listitem_open($level, $node = false) global() argument
[all...]
H A Drenderer.php187 * @param int $level the nesting level argument
189 public function toc_additem($id, $text, $level)
197 * @param int $level header level
200 public function header($text, $level, $pos)
207 * @param int $level section level (as determined by the previous header)
209 public function section_open($level)
400 * @param int $level th
177 toc_additem($id, $text, $level) global() argument
195 section_open($level) global() argument
362 listitem_open($level, $node = false) global() argument
[all...]
H A Dxhtml.php32 /** @var int current section level */
199 * @param int $level the nesting level
201 public function toc_additem($id, $text, $level)
206 if ($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']) {
207 $this->toc[] = html_mktocitem($id, $text, $level - $conf['toptoclevel'] + 1);
215 * @param int $level header level
220 public function header($text, $level,
195 toc_additem($id, $text, $level) global() argument
213 header($text, $level, $pos, $returnonly = false) global() argument
265 section_open($level) global() argument
509 listitem_open($level, $node = false) global() argument
[all...]
H A Dhandler.php329 // get level and title
331 $level = 7 - strspn($title, '=');
332 if ($level < 1) $level = 1;
338 $this->addCall('header', [$title, $level, $pos], $pos);
340 $this->addCall('section_open', [$level], $pos);
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php17 * Set the compression level and type
19 * @param int $level Compression level (0 to 9)
23 abstract public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO); argument
H A DTar.php30 * @param int $level Compression level (0 to 9)
34 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO) argument
37 if ($level < -1 || $level > 9) {
38 throw new ArchiveIllegalCompressionException('Compression level should be between -1 and 9');
41 $this->complevel = $level;
42 if($level == 0) $this->comptype = Archive::COMPRESS_NONE;
H A DZip.php29 * Set the compression level.
36 * @param int $level Compression level (0 to 9)
40 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO) argument
42 if ($level < -1 || $level > 9) {
43 throw new ArchiveIllegalCompressionException('Compression level should be between -1 and 9');
45 $this->complevel = $level;
337 $deflate_context = deflate_init(ZLIB_ENCODING_DEFLATE, ['level' => $this->complevel]);
/dokuwiki/inc/Parsing/Lexer/
H A DParallelRegex.php158 $level = 0;
162 * for "(", ")" remember the nesting level, add "\"
171 if ($level > 0)
172 $level--; /* closing (? */
177 $level++;
/dokuwiki/lib/plugins/info/
H A Dsyntax.php321 * @param int $level argument
325 protected function addToToc($text, $level, Doku_Renderer_xhtml $renderer)
330 if (($level >= $conf['toptoclevel']) && ($level <= $conf['maxtoclevel'])) {
336 'level' => $level - $conf['toptoclevel'] + 1
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_toc.css67 /* in case of toc list jumping one level
68 (e.g. if heading level 3 follows directly after heading level 1) */
H A Dpagetools.less31 /* on same vertical level as first headline, because .page has 2em padding */
/dokuwiki/inc/
H A Dhtml.php430 return '<li class="level' . $item['level'] . '">';
437 * Each item in the array has to have a 'level' property
452 * @param bool $forcewrapper (optional) Trigger building a wrapper ul if the first level is
463 $start_level = $firstElement['level'];
464 $level = $start_level;
470 $lifunc = static fn($item) => '<li class="level' . $item['level'] . '">';
474 if ($item['level'] > $level) {
833 html_mktocitem($link, $text, $level, $hash = '#') global() argument
[all...]
H A Dmedia.php64 * @param int $auth permission level
149 * @param int $auth permission level
436 * @param int $auth permission level
704 * @param null|int $auth permission level
939 * @param null|int $auth permission level
960 * @param null|int $auth permission level
982 * @param null|int $auth permission level
1006 * @param null|int $auth permission level
1031 * @param null|int $auth permission level
1050 * @param null|int $auth permission level
[all...]
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php267 $level = auth_aclcheck($id, $user, $userinfo['grps']);
268 if ($level >= AUTH_READ) {
/dokuwiki/lib/plugins/extension/helper/
H A Dlist.php57 * @param int $level The level of the header argument
59 public function addHeader($id, $header, $level = 2)
61 $this->form .= '<h' . $level . ' id="' . $id . '">' . hsc($header) . '</h' . $level . '>' . DOKU_LF;
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md85 Stacktraces will be printed on log level `debug`.
145 loglevels and our own `success` level:
160 Messages from `warning` level onwards are printed to `STDERR` all below are printed to `STDOUT`.
162 The default log level of your script can be set by overwriting the `$logdefault` member.
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php4250 * I suspect PHP's htmlspecialchars() is working at the byte-value level and
4254 * byte-value level that goes some way towards explaining why the
4256 * htmlentities() which certainly is working at byte-value level.)
4258 * This replacement function however works at character level and should
4590 $level = 0;
4597 if (isset($prev_keys[$level])) {
4598 if ($prev_keys[$level] == $entry) {
4603 while (isset($entry[$char]) && isset($prev_keys[$level][$char])
4604 && $entry[$char] == $prev_keys[$level][$char]) {
4609 if ($char == strlen($prev_keys[$level])) {
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php147 public static function error($message, $level, $file, $line) argument
149 if ((error_reporting() & $level) > 0) {
150 switch ($level) {
H A DSimplePie.php678 * The SimplePie class contains feed level data and options
1014 * @param int $level Feed Autodiscovery Level (level can be a combination of the above constants, see bitwise OR operator)
1016 public function set_autodiscovery_level($level = self::LOCATOR_ALL) argument
1018 $this->autodiscovery = (int) $level;
2128 * Get data for an feed-level element
2136 * `attribs` then has one level of associative name => value data (where
2185 * Get data for an channel-level element
2231 * Get data for an channel-level element
2592 * @internal Added for parity between the parent-level an
[all...]