Changeset 423
- Timestamp:
- Oct 10, 2012, 7:23:58 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ToDo.txt
r422 r423 10 10 - Správu projektů a úloh, komentáře k řešení, průběh zpracování 11 11 - Podpora pro inventůru 12 - Podpora IPv6 13 - Fulltextové vyhledávání v obsahu 14 - Automatické zálohování nastavení z routerů 15 - Vytvořit solidní speedtest se záznamem měření -
trunk/finance/clenove.php
r327 r423 56 56 $Output .= '<tr><td><strong>Celkem</strong></td><td> </td>'; 57 57 //<td align="right"><strong>'.$TotalDevice.'</strong></td> 58 $Output .= '<td align="right"><strong>'.$TotalMonth.'</strong></td><td align="right"><strong>'.$TotalCash.'</strong></td><td align="right"> </td><td align="right"> </td>< /tr>';58 $Output .= '<td align="right"><strong>'.$TotalMonth.'</strong></td><td align="right"><strong>'.$TotalCash.'</strong></td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td></tr>'; 59 59 $Output .= '</table>'; 60 60 $Output .= $PageList['Output']; -
trunk/global.php
r396 r423 356 356 $QueryItems = GetQueryStringArray($_SERVER['QUERY_STRING']); 357 357 358 $ItemPerPage = $System->Config['Web']['ItemsPerPage'];359 $Around = round($System->Config['Web']['VisiblePagingItems'] / 2);360 358 $Result = ''; 361 $PageCount = floor($TotalCount / $ItemPerPage) + 1; 359 if(array_key_exists('all', $QueryItems)) 360 { 361 $PageCount = 1; 362 $ItemPerPage = $TotalCount; 363 } else 364 { 365 $ItemPerPage = $System->Config['Web']['ItemsPerPage']; 366 $Around = round($System->Config['Web']['VisiblePagingItems'] / 2); 367 $PageCount = floor($TotalCount / $ItemPerPage) + 1; 368 } 362 369 363 370 if(!array_key_exists('Page', $_SESSION)) $_SESSION['Page'] = 0; … … 405 412 } 406 413 } 414 $QueryItems['all'] = '1'; 415 if($PageCount > 1) $Result.= '<a href="?'.SetQueryStringArray($QueryItems).'">Vše</a>'; 416 407 417 $Result = '<div style="text-align: center">'.$Result.'</div>'; 408 418 return(array('SQLLimit' => ' LIMIT '.$CurrentPage * $ItemPerPage.', '.$ItemPerPage,
Note:
See TracChangeset
for help on using the changeset viewer.