Changeset 9 for trunk/Packages/Common/Paging.php
- Timestamp:
- Jun 1, 2023, 1:01:38 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Paging.php
r8 r9 8 8 public string $SQLLimit; 9 9 public int $Page; 10 private System $System; 10 11 11 function __construct( )12 function __construct(System $System) 12 13 { 13 global $System; 14 15 $this->ItemPerPage = $System->Config['Web']['ItemsPerPage']; 16 $this->Around = $System->Config['Web']['VisiblePagingItems']; 14 $this->System = $System; 15 $this->ItemPerPage = Core::Cast($this->System)->Config['Web']['ItemsPerPage']; 16 $this->Around = Core::Cast($this->System)->Config['Web']['VisiblePagingItems']; 17 17 } 18 18
Note:
See TracChangeset
for help on using the changeset viewer.