Ignore:
Timestamp:
Feb 5, 2009, 11:12:54 PM (16 years ago)
Author:
george
Message:
  • Přidáno: RSS kanál pro logovací záznamy.
  • Přidáno: Stránkování seznamu logovacích záznamů.
  • Upraveno: Soubor global nyní nezobrazuje ihned záhlaví stránky, ale je nutné volat funkci ShowPage. V odkazovaných souborech se sjednotila inicializace databáze a dalších součástí do jednoho souboru.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global_function.php

    r65 r67  
    1616  //$return = StrToLower($return); // velká písmena nahradí malými.
    1717  return($return);
     18}
     19
     20function ListPaging($Address, $Table, $Where, $ItemsPerPage, $CurrentPage)
     21{
     22  global $Database;
     23       
     24  $Line = mysql_fetch_row($Database->SQLCommand('SELECT count(*) FROM '.$Table.' '.$Where));       
     25  $ItemCount = floor($Line[0] / $ItemsPerPage);
     26       
     27  echo('Počet položek: <strong>'.$Line[0].'</strong> &nbsp; Zobrazit stránku: ');
     28
     29  if($CurrentPage > $ItemCount) $CurrentPage = ($ItemCount / $ItemsPerPage) - 1;
     30  for($Page = 1; $Page <= $ItemCount; $Page++)
     31  {
     32    if($CurrentPage == $Page) echo('<strong>'.$Page.'</strong> ');
     33      else echo('<a href="'.$Address.$Page.'">'.$Page.'</a> ');
     34  }
     35  echo('<br />');       
    1836}
    1937
     
    116134(
    117135  //    index,   indexname  , barva ,  popis
    118   array('0', 'Download CZWoW', 'brown', 'Stáhnutí CZWoW souboru'),
    119   array('1', 'Questy', 'green', 'Operace s questy'),
    120   array('2', 'Download SQL', 'brown', 'Stáhnutí Sql souboru'),
     136  array('1', 'Překlady', 'green', 'Operace s překladdy'),
     137  array('2', 'Stažení', 'brown', 'Stáhnutí souboru'),
    121138  array('3', 'Uživatelé', 'blue', 'Přihlášení uživatelů, nastavení, registrace'),
    122139  array('4', 'Moderátor', 'red', 'Přihlášení uživatelů'),
    123   array('5', 'Hlasování', 'yellowgreen', 'Přihlášení uživatelů'),
    124   array('6', 'Npc_text', 'tomato', 'Operace s NPC_texty'),
    125   array('7', 'Page_text', 'aqua', 'Operace s page_texty'),
    126   array('8', 'Client_text', 'black', 'Operace s clien_texty'),
    127140);
    128141
Note: See TracChangeset for help on using the changeset viewer.