Changeset 9 for trunk/Packages/Common/Table.php
- Timestamp:
- Jun 1, 2023, 1:01:38 AM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Table.php
r8 r9 99 99 private array $OrderDirSQL; 100 100 101 function __construct( )101 function __construct(System $System) 102 102 { 103 global $System;104 105 103 $this->Columns = array(); 106 104 $this->Table = new TableMemory(); 107 105 $this->OrderDirSQL = array('ASC', 'DESC'); 108 $this->OrderArrowImage = array( $System->Link('/images/sort_asc.png'),106 $this->OrderArrowImage = array(Core::Cast($System)->Link('/images/sort_asc.png'), 109 107 $System->Link('/images/sort_desc.png')); 110 108 $this->DefaultOrder = 0;
Note:
See TracChangeset
for help on using the changeset viewer.