Changeset 71 for trunk/www/Base/Table.php
- Timestamp:
- Aug 23, 2009, 6:14:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Base/Table.php
r69 r71 57 57 'Rows' => $this->Values, 58 58 ); 59 $Output = Table($Table, 'WideTable'); 60 $Output .= '<div class="Pager">'.PageList('Page', $this->Page, $this->TotalRowCount, $Config['Web']['TableRowPerPage']).'</div>'; 59 $Html = new Html(); 60 $Output = $Html->Table($Table, 'WideTable'); 61 $Output .= '<div class="Pager">'.$Html->PageList('Page', $this->Page, $this->TotalRowCount, $Config['Web']['TableRowPerPage']).'</div>'; 61 62 return($Output); 62 63 }
Note:
See TracChangeset
for help on using the changeset viewer.