Ignore:
Timestamp:
Jan 21, 2014, 12:02:53 AM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Tabulka měsíčních přehledů přepracována s použitím obecných tříd. Nyní podporuje řazení a stránkování. Celkové součty byly odebrány.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r635 r636  
    137137}
    138138
    139 class Pageing
     139class Paging
    140140{
    141141        var $TotalCount;
    142142        var $ItemPerPage;
    143143        var $Around;
     144        var $SQLLimit;
     145        var $Page;
    144146       
    145147        function __construct()
     
    147149                global $System;
    148150               
    149                 $this->ItemPerPage = 5; //$System->Config['Web']['ItemsPerPage'];
     151                $this->ItemPerPage = $System->Config['Web']['ItemsPerPage'];
    150152                $this->Around = $System->Config['Web']['VisiblePagingItems'];
    151153        }
Note: See TracChangeset for help on using the changeset viewer.