Home
last modified time | relevance | path

Searched refs:level (Results 101 – 125 of 630) sorted by relevance

12345678910>>...26

/plugin/odt/ODT/css/
H A Dcssdocument.php142 public $level = 0; variable in cssdocument
227 $this->rootLevel = $this->level-1;
238 $this->level = $this->rootLevel + 1;
248 $state ['level'] = $this->level;
262 $this->level = $state ['level'];
274 $this->entries [$this->size]['level'] = $this->level;
292 $this->level++;
301 $this->level--;
302 $this->entries [$this->size]['level'] = $this->level;
436 $this->level = $this->entries [$index]['level'];
/plugin/pagequery/
H A DPageQuery.php687 * group a multi-dimensional array by each level heading
696 * @return array $results : array of arrays: (level, name, page_id, title), e.g. array(1, 'Main Title')
716 $level = count($group_opts['key']) - 1;
718 $this->addHeading($results, $sort_array, $group_opts, $level, $idx, $prevs);
719 $result = [0]; // basic item (page link) is level 0
733 private function addHeading(&$results, $sort_array, $group_opts, $level, $idx, &$prevs): void
738 if ($level > 0) {
739 $this->addHeading($results, $sort_array, $group_opts, $level - 1, $idx, $prevs); argument
741 $group_type = $group_opts['type'][$level];
743 $prev = $prevs[$level]
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/
H A DRelativeNormalizerStrategy.php37 public function addItem(int $level, ListItem $listItemToAdd): void
42 while ($previousLevel !== null && $level < $previousLevel) {
49 // Need to go one level deeper? Add that level
50 if ($lastListItem !== false && $level > $previousLevel) {
55 // Otherwise we're at the right level
65 $this->listItemStack[$level] = $listItemToAdd;
31 addItem(int $level, ListItem $listItemToAdd) global() argument
/plugin/combo/resources/theme/default/components/css/
H A Doutline.css14 section.outline-level-3-cs, section.outline-level-4-cs, section.outline-level-5-cs, section.outline-level-6-cs {
/plugin/combo/ComboStrap/
H A DSectionTag.php17 $level = $tag->getComponentAttributeValueAndRemoveIfPresent(HeadingTag::LEVEL);
18 if ($level !== null) {
20 $tag->addClassName(StyleAttribute::addComboStrapSuffix("outline-level-$level"));
/plugin/wrap/syntax/
H A Ddiv.php56 $level = 7 - strspn($title,'=');
57 if($level < 1) $level = 1;
61 $handler->addCall('header',array($title,$level,$pos), $pos);
63 if ($title && $level <= $conf['maxseclevel']) {
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Cache/
H A DAbstractCache.php50 * @param int $level The logging level
54 protected function log($level, $message, array $context = array()) argument
57 $this->logger->log($level, $message, $context);
/plugin/webcomponent/syntax/
H A Dcard.php161 $level = 7 - strspn($title, '=');
162 if ($level < 1) $level = 1;
166 $parameters['header']['level'] = $level;
229 $level = $parameters['header']['level'];
230 $this->header .= '<h' . $level . ' class="card-title">';
232 $this->header .= "</h$level>";
/plugin/authucenter/lib/uc_client/lib/
H A Dxml.class.php17 function xml_serialize($arr, $htmlon = FALSE, $isnormal = FALSE, $level = 1) { argument
18 $s = $level == 1 ? "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n<root>\r\n" : '';
19 $space = str_repeat("\t", $level);
24 …$s .= $space."<item id=\"$k\">\r\n".xml_serialize($v, $htmlon, $isnormal, $level + 1).$space."</it…
28 return $level == 1 ? $s."</root>" : $s;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
H A DWebproperty.php63 public $level; variable in Google\\Service\\Analytics\\Webproperty
236 public function setLevel($level) argument
238 $this->level = $level;
245 return $this->level;
/plugin/qrcode2/
H A Dphpqrcode.php687 if($level < 0 || $level > 3)
690 return self::$formatInfo[$level][$mask];
1292 private $level; variable in QRinput
1303 $this->level = $level;
1328 return $this->level;
1334 if($level > QR_ECLEVEL_H) {
1339 $this->level = $level;
3059 $input = new QRinput($version, $level);
3215 public $level = QR_ECLEVEL_L; variable in QRencode
3225 switch ($level.'') {
[all …]
/plugin/fullindex/
H A Dscript.js85 function aq_showLevel(ul, level, currLevel) { argument
97 if (currLevel < level){
102 aq_showLevel(subul, level, currLevel);
136 function aq_show(level, obj) { argument
142 if(level > 0) {
144 aq_showLevel(ul, level, 0);
/plugin/dw2markdown/
H A Drenderer.php48 * @param int $level header level
51 function header($text, $level, $pos, $returnonly = false) { argument
52 $this->doc .= str_repeat("#", $level) . ' ' . $text . DOKU_LF;
58 * @param int $level section level (as determined by the previous header)
60 function section_open($level) { argument
259 * @param int $level the nesting level
262 function listitem_open($level,$node=false) { argument
264 $this->doc .= str_repeat(' ', $level*2) . $this->listMode[count($this->listMode)-1];
/plugin/numberedheadings/
H A DREADME.md10 | tier1 | heading level corresponding to the first tier (default = 2) |
19 You can choose the first tier level (**tier1**) in the Configration manager.
20 The **tier1** may be a fixed value (eg. level 2) or auto-detected in the page.
39 ### Auto-Detect first tier level
43 You can use different first tier level in each page.
61 are not rendered, but can be used to sepecify level numbers or tier format.
64 === --#1000 ["(%04d)"] === ... set number and tier format of the level
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/
H A DBasePhpFormulaLoader.php66 $level = & $bufferLevels[$i];
70 case '(': ++$level; break;
71 case ')': --$level; break;
76 if (!$level) {
85 ++$level;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/
H A DUnusedSystemSniff.php82 $level = $tokens[$stackPtr]['level'];
84 if ($tokens[$i]['level'] < $level) {
89 if ($tokens[$stackPtr]['level'] === $level) {
97 $level--;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DCubeHandler.php45 public function __construct(string $url, $level = Logger::DEBUG, bool $bubble = true) argument
64 parent::__construct($level, $bubble);
130 $data['data']['level'] = $record['level'];
/plugin/combo/syntax/
H A Dheadingwiki.php130 $level = $this->getLevelFromMatch($match);
133 ->addComponentAttributeValue(HeadingTag::LEVEL,$level)
224 $level = $data[PluginUtility::ATTRIBUTES][HeadingTag::LEVEL];
225 $renderer->doc .= "<h$level>";
231 $level = $data[PluginUtility::ATTRIBUTES][HeadingTag::LEVEL];
232 $renderer->doc .= "</h$level>";
/plugin/settingstree/settings/
H A Dsettingshierarchy.class.php178 function showHierarchyLevelRecursive($level,$key,&$empty){ argument
180 $chn = $level->getChildren();
190 $p = $level->isLevelProtected($key);
191 $v = $level->isLevelValue($key);
193 $lev = "<li data-path='{$level->getPath()}' class='".($empty ? 'empty':'')."'>";
195 ."{$level->getLevelNameRelative()}</b>";
197 …>getLang('value_set_to')." <code>{$this->format($key,$level->getLevelValue($key))}</code>".($level
/plugin/twcheckliste/
H A Drenderer.php.old102 function header($text, $level, $pos) {
104 if($level == 1){
107 $level = 2;
113 if($level == 2){
120 $this->doc .= '<h'.($level-1).'>';
122 $this->doc .= '</h'.($level-1).'>'.DOKU_LF;
128 function section_open($level) {
129 if($level < 3){
/plugin/slider/
H A Dsyntax.php110 $level = 7 - strspn($title,'=');
111 if($level < 1) $level = 1;
115 $handler->_addCall('header',array($title,$level,$pos), $pos);
117 if ($title && $level <= $conf['maxseclevel']) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Metrics/
H A DNestingLevelSniff.php84 $level = $tokens[$i]['level'];
85 if ($nestingLevel < $level) {
86 $nestingLevel = $level;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Test/
H A DTestCase.php36 …protected function getRecord(int $level = Logger::WARNING, string $message = 'test', array $contex… argument
41 'level' => $level,
42 'level_name' => Logger::getLevelName($level),
/plugin/dataloop/syntax/
H A Dloop.php251 $level = 7 - strspn($title,'=');
252 if($level < 1) $level = 1;
255 $sStr = "<h$level>$title</h$level>";
257 if($level <= $iCurrLevel)
263 if($level >= $iCurrLevel)
265 $sStr = $sStr.'<div class="level'.$level.'">';
268 $iCurrLevel = $level;
/plugin/mdpage/vendor/cebe/markdown/block/
H A DHtmlTrait.php92 $level = 0;
94 $level--;
99 …$level += substr_count($line, "<$tag") - substr_count($line, "</$tag>") - substr_count($line, "/>"…
100 if ($level <= 0) {

12345678910>>...26