Ignore:
Timestamp:
Jun 1, 2023, 1:01:38 AM (12 months ago)
Author:
chronos
Message:
  • Fixed: Modules initialization.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Table.php

    r8 r9  
    9999  private array $OrderDirSQL;
    100100
    101   function __construct()
     101  function __construct(System $System)
    102102  {
    103     global $System;
    104 
    105103    $this->Columns = array();
    106104    $this->Table = new TableMemory();
    107105    $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'),
    109107      $System->Link('/images/sort_desc.png'));
    110108    $this->DefaultOrder = 0;
Note: See TracChangeset for help on using the changeset viewer.