Changeset 94 for trunk/Packages/Common/Table.php
- Timestamp:
- May 25, 2020, 9:54:02 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Table.php
r92 r94 1 1 <?php 2 2 3 class Control 3 class Control extends Base 4 4 { 5 5 var $Name; … … 98 98 var $Style; 99 99 100 function __construct( )100 function __construct(Application $System) 101 101 { 102 global $System;102 parent::__construct($System); 103 103 104 104 $this->Columns = array(); 105 105 $this->Table = new TableMemory(); 106 106 $this->OrderDirSQL = array('ASC', 'DESC'); 107 $this->OrderArrowImage = array($ System->Link('/images/sort_asc.png'),108 $ System->Link('/images/sort_desc.png'));107 $this->OrderArrowImage = array($this->System->Link('/images/sort_asc.png'), 108 $this->System->Link('/images/sort_desc.png')); 109 109 $this->DefaultOrder = 0; 110 110 $this->Style = 'BaseTable';
Note:
See TracChangeset
for help on using the changeset viewer.