Home
last modified time | relevance | path

Searched refs:displayRangeEnd (Results 1 – 2 of 2) sorted by relevance

/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/fluid/Classes/ViewHelpers/Widget/Controller/
H A DPaginateController.php66 protected $displayRangeEnd; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\PaginateController
124 … $this->displayRangeEnd = $this->currentPage + $delta - ($maximumNumberOfLinks % 2 === 0 ? 1 : 0);
126 $this->displayRangeEnd -= $this->displayRangeStart - 1;
128 if ($this->displayRangeEnd > $this->numberOfPages) {
129 $this->displayRangeStart -= $this->displayRangeEnd - $this->numberOfPages;
132 $this->displayRangeEnd = (int)min($this->displayRangeEnd, $this->numberOfPages);
145 for ($i = $this->displayRangeStart; $i <= $this->displayRangeEnd; $i++) {
153 'displayRangeEnd' => $this->displayRangeEnd,
155 'hasMorePages' => $this->displayRangeEnd + 1 < $this->numberOfPages
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/fluid/Classes/ViewHelpers/Widget/Controller/
H A DPaginateController.php68 protected $displayRangeEnd; variable in TYPO3\\CMS\\Fluid\\ViewHelpers\\Widget\\Controller\\PaginateController
126 … $this->displayRangeEnd = $this->currentPage + $delta - ($maximumNumberOfLinks % 2 === 0 ? 1 : 0);
128 $this->displayRangeEnd -= $this->displayRangeStart - 1;
130 if ($this->displayRangeEnd > $this->numberOfPages) {
131 $this->displayRangeStart -= $this->displayRangeEnd - $this->numberOfPages;
134 $this->displayRangeEnd = (int)min($this->displayRangeEnd, $this->numberOfPages);
147 for ($i = $this->displayRangeStart; $i <= $this->displayRangeEnd; $i++) {
155 'displayRangeEnd' => $this->displayRangeEnd,
157 'hasMorePages' => $this->displayRangeEnd + 1 < $this->numberOfPages