@@ -290,7 +290,8 @@ discard block |
||
290 | 290 | <li class="wt-initials-list-item d-flex"> |
291 | 291 | <?php if ($count > 0) : ?> |
292 | 292 | <a href="<?= e($this->listUrl($tree, ['alpha' => $letter, 'show_marnm' => $show_marnm, 'tree' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->displaySurnameInitial((string) $letter) ?></a> |
293 | - <?php else : ?> |
|
293 | + <?php else { |
|
294 | + : ?> |
|
294 | 295 | <span class="wt-initial px-1 text-muted"><?= $this->displaySurnameInitial((string) $letter) ?></span> |
295 | 296 | |
296 | 297 | <?php endif ?> |
@@ -345,6 +346,7 @@ discard block |
||
345 | 346 | switch ($alpha) { |
346 | 347 | case '@': |
347 | 348 | $filter = static fn(string $x): bool => $x === Individual::NOMEN_NESCIO; |
349 | +} |
|
348 | 350 | break; |
349 | 351 | case ',': |
350 | 352 | $filter = static fn(string $x): bool => $x === ''; |
@@ -198,7 +198,8 @@ |
||
198 | 198 | //-- footer |
199 | 199 | echo '</div>'; |
200 | 200 | //echo '<script>document.getElementById("bodydiv").style.height="', $this->maxY, 'pt";</script>'; |
201 | - if ($this->Y < 200) { //heuristic guess! |
|
201 | + if ($this->Y < 200) { |
|
202 | +//heuristic guess! |
|
202 | 203 | echo '<div id="bottommargin" style="position: relative; top: auto; height: ', $this->bottom_margin - $this->footer_margin, 'pt;width:', $this->noMarginWidth, 'pt;"></div>'; |
203 | 204 | echo '<div id="footerdiv" style="position: relative; top: auto; width: ', $this->noMarginWidth, 'pt;height:auto;">'; |
204 | 205 | } else { |
@@ -137,10 +137,12 @@ |
||
137 | 137 | // If current position (top) |
138 | 138 | $align_Y = false; |
139 | 139 | $topstr = ""; |
140 | - if ($this->top < -110000) { // pos='abs' |
|
140 | + if ($this->top < -110000) { |
|
141 | +// pos='abs' |
|
141 | 142 | $this->top += 222000; |
142 | 143 | } |
143 | - if ($this->top < -10000) { // <= -100000: both pdf and html; -100000 -- -90000: only html |
|
144 | + if ($this->top < -10000) { |
|
145 | +// <= -100000: both pdf and html; -100000 -- -90000: only html |
|
144 | 146 | $this->top += 90000; //= ReportBaseElement::CURRENT_POSITION; |
145 | 147 | if ($this->top < -9000) { |
146 | 148 | $this->top += 10000; |
@@ -139,10 +139,12 @@ |
||
139 | 139 | // If current position (top) |
140 | 140 | $align_Y = false; |
141 | 141 | $curr_P = $renderer->tcpdf->getPage(); |
142 | - if ($this->top < -95000) { // 90000: only html; 100000: both pdf and html |
|
142 | + if ($this->top < -95000) { |
|
143 | +// 90000: only html; 100000: both pdf and html |
|
143 | 144 | $align_Y = true; |
144 | 145 | } |
145 | - if ($this->top < -200000) { // pos="abs" |
|
146 | + if ($this->top < -200000) { |
|
147 | +// pos="abs" |
|
146 | 148 | $this->top += 222000; |
147 | 149 | } else { |
148 | 150 | $this->top = ReportBaseElement::CURRENT_POSITION; |
@@ -1026,7 +1026,8 @@ discard block |
||
1026 | 1026 | } elseif ($nameselect == 'combined') { |
1027 | 1027 | $tmp = $record->getAllNames(); |
1028 | 1028 | $name = $tmp[count($tmp) - 1]['full']; |
1029 | - if ($ix1 = strpos($name, '<span class="starredname">')) { // '«' and '»' mark text for underlining |
|
1029 | + if ($ix1 = strpos($name, '<span class="starredname">')) { |
|
1030 | +// '«' and '»' mark text for underlining |
|
1030 | 1031 | $name = substr_replace($name, '«', $ix1, 26); |
1031 | 1032 | $ix1 = strpos($name, '</span>', $ix1); |
1032 | 1033 | $name = substr_replace($name, '»', $ix1, 7); |
@@ -1501,7 +1502,8 @@ discard block |
||
1501 | 1502 | // Resort facts in chronological order, if possible |
1502 | 1503 | $m = count($this->repeats) - 1; |
1503 | 1504 | $prevd = 0; |
1504 | - for ($i = 0; $i <= $m; $i++) { // keep undated events after previous dated event |
|
1505 | + for ($i = 0; $i <= $m; $i++) { |
|
1506 | +// keep undated events after previous dated event |
|
1505 | 1507 | if ($jdarr[$i] === 0) { |
1506 | 1508 | $jdarr[$i] = $prevd; |
1507 | 1509 | } else { |
@@ -1746,7 +1748,8 @@ discard block |
||
1746 | 1748 | } elseif (preg_match('/^I18N::translateContext\(\'(.+)\', *\'(.+)\'\)$/', $value, $match)) { |
1747 | 1749 | $value = I18N::translateContext($match[1], $match[2]); |
1748 | 1750 | } |
1749 | - if (isset($attrs['lcfirst'])) { // set 1st char to lower case |
|
1751 | + if (isset($attrs['lcfirst'])) { |
|
1752 | +// set 1st char to lower case |
|
1750 | 1753 | $value = lcfirst($value); |
1751 | 1754 | } |
1752 | 1755 |