Home
last modified time | relevance | path

Searched refs:level (Results 176 – 200 of 630) sorted by relevance

12345678910>>...26

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DLogger.php121 * @param mixed $level
125 public function log($level, $message, array $context = array()); argument
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DRequestException.php81 $level = (int) floor($response->getStatusCode() / 100);
82 if ($level === 4) {
85 } elseif ($level === 5) {
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DChromePHPHandler.php69 public function __construct($level = Logger::DEBUG, bool $bubble = true) argument
71 parent::__construct($level, $bubble);
89 if ($record['level'] < $this->level) {
H A DCouchDBHandler.php31 public function __construct(array $options = [], $level = Logger::DEBUG, bool $bubble = true) argument
41 parent::__construct($level, $bubble);
H A DInsightOpsHandler.php40 $level = Logger::DEBUG, argument
58 $level,
H A DSyslogHandler.php42 …public function __construct(string $ident, $facility = LOG_USER, $level = Logger::DEBUG, bool $bub… argument
44 parent::__construct($facility, $level, $bubble);
H A DLogEntriesHandler.php36 $level = Logger::DEBUG, argument
52 $level,
H A DSqsHandler.php35 …public function __construct(SqsClient $sqsClient, string $queueUrl, $level = Logger::DEBUG, bool $… argument
37 parent::__construct($level, $bubble);
H A DIFTTTHandler.php39 …public function __construct(string $eventName, string $secretKey, $level = Logger::ERROR, bool $bu… argument
48 parent::__construct($level, $bubble);
H A DMandrillHandler.php36 … public function __construct(string $apiKey, $message, $level = Logger::ERROR, bool $bubble = true) argument
38 parent::__construct($level, $bubble);
H A DFilterHandler.php102 …$acceptedLevels = array_values(array_filter(Logger::getLevels(), function ($level) use ($minLevelO…
103 return $level >= $minLevelOrList && $level <= $maxLevel;
/plugin/upgrade/
H A Dadmin.php195 * @param string $level
198 public function log($level, $message)
200 echo '<div class="log-' . $level . '">' . $message . '</div>';
183 log($level, $message) global() argument
/plugin/latexport/_test/
H A Ddecorator_mock.php35 function header($text, $level, $pos) { argument
36 $this->listOfCommands->enqueue(new CommandHeader($text, $level, $pos));
118 function listitem_open($level,$node=false) { argument
119 $this->listOfCommands->enqueue(new CommandListItemOpen($level, $node));
/plugin/bootswrapper/exe/help/
H A Dbutton.txt71 Create block level buttons—those that span the full width of a parent -- by adding ''block="true"''…
73 <btn type="primary" size="lg" block="true">Block level button</btn>
75 <btn type="default" size="lg" block="true">Block level button</btn>
80 <btn type="primary" size="lg" block="true">Block level button</btn>
81 <btn type="default" size="lg" block="true">Block level button</btn>
116 | ''block'' | optional | ''true'' ''false'' | Block level buttons |
/plugin/upgrade/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
/plugin/dw2pdf/vendor/mpdf/qrcode/src/
H A DQrCode.php21 * ECC level
25 private $level; variable in Mpdf\\QrCode\\QrCode
199 * @param string $level Level of error correction (ECC) : L, M, Q, H
201 public function __construct($value, $level = 'L') argument
203 if (!$this->isAllowedErrorCorrectionLevel($level)) {
212 $this->level = $level;
372 $this->ec = $ecHash[$this->level];
495 // data file of geometry & mask for version V, ecc level N
707 private function isAllowedErrorCorrectionLevel($level) argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DATXHeadingParser.php
/plugin/blogtng/helper/
H A Dentry.php1013 $level = $ins[$i][1][1];
1025 $level
1036 $level = $level + 1;
1037 if ($level > 5) $level = 5;
1040 $ins[$i][1][1][1] = $level;
1043 $ins[$i][1][1] = $level;
1052 $level = $ins[$i][1][0];
1053 if ($inc_level) $level = $level + 1;
1054 if ($level > 5) $level = 5;
1055 $ins[$i][1][0] = $level;
/plugin/latexit/
H A Drenderer.php413 * @param int $level Level of the header.
416 function header($text, $level, $pos) { argument
437 $level += $this->headers_level;
442 $level--;
445 if (isset($levels[$level])) {
666 * @param int $level Level of indention.
668 function listitem_open($level) { argument
669 $this->last_level = $level;
1508 $this->_open($level);
1570 public function _increaseLevel($level) { argument
[all …]
/plugin/bootswrapper/syntax/
H A Dbootstrap.php213 $level = 7 - strspn($title, '=');
214 if ($level < 1) {
215 $level = 1;
221 $handler->_addCall('header', array($title, $level, $pos), $pos);
/plugin/hidden/
H A Dsyntax.php204 $level = 7 - strspn($title,'=');
205 if($level < 1) $level = 1;
208 $renderer->header($title, $level, 0);
/plugin/latexport/implementation/
H A Ddecorator_persister.php217 function toc_additem($id, $text, $level) { argument
224 function header($text, $level, $pos) { argument
225 switch($level) {
270 * @param int $level section level (as determined by the previous header)
272 function section_open($level) { argument
461 * @param int $level the nesting level
464 function listitem_open($level,$node=false) { argument
465 $this->appendContent(str_repeat(' ', $level).'\\item ');
/plugin/tagsections/action/
H A Dajax.php115 foreach ($ns_parts as $level => $part) {
121 …if ($pos >= count($data) || ($data[$pos]['level'] <= $level+1 && strnatcmp(utf8_encodeFN($data[$po…
122 …array_splice($data, $pos, 0, array(array('level' => $level+1, 'id' => $tmp_ns, 'open' => 'true')));
/plugin/numberedheadings/
H A Dsyntax.php17 * tier1 : heading level corresponding to the 1st tier
75 // obtain the first tier (Tier1) level from the page if defined
79 $level = (int) substr($match, -3, 1);
80 return $data = compact('level');
83 // obtain the level of the heading
84 $level = 7 - min(strspn($match, '='), 6);
135 $data = compact('dash', 'level', 'number', 'title', 'format');
143 $this->addCall($handler, 'section_open', [$level], $pos);
/plugin/nodisp/syntax/
H A Dbasic.php34 $level = "nodisp_" . $this->getLevel($m[1]);
35 return array($state,"<div class = \"$level\"><!-- nodisp -->\n");

12345678910>>...26