Changeset 2 for trunk/www/stat.php


Ignore:
Timestamp:
Nov 28, 2008, 8:21:35 AM (16 years ago)
Author:
george
Message:
  • Upraveno: Převod kódování stránek z iso8859-2 na utf-8.
  • Odstraněno: Staré nepotřebné soubory.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/stat.php

    r1 r2  
    33// Pojmenování statistických kategorií
    44$StatCategory = array(   
    5   'browser' => 'Prohlí¾eèe',
    6   'referer' => 'Odkud pøi¹li',
     5  'browser' => 'Prohlížeče',
     6  'referer' => 'Odkud přišli',
    77  'module' => 'Sekce webu',
    8   'host' => 'Adresy náv¹tìvníkù',
     8  'host' => 'Adresy návštěvníků',
    99  'word' => 'Hledaná slova',
    10   'user' => 'U¾ivatelé',
     10  'user' => 'Uživatelé',
    1111  'action' => 'Akce',
    1212);
    1313
    14 $StatMonths = array('Leden','Únor','Bøezen','Duben','Kvìten','Èerven','Èervenec','Srpen','Záøí','Øíjen','Listopad','Prosinec');
     14$StatMonths = array('Leden','Únor','Březen','Duben','Květen','Červen','Červenec','Srpen','Září','Říjen','Listopad','Prosinec');
    1515
    1616/*
     
    5454  StatUpdate('module', substr($_SERVER['SCRIPT_NAME'], $Options['StatPathCut']));
    5555 
    56   // Zjistí stránku odkud uzivatel pøisel
     56  // Zjistí stránku odkud uzivatel přisel
    5757  if(array_key_exists('HTTP_REFERER', $_SERVER))
    5858  {
     
    6868  } else StatUpdate('referer', 'direct');
    6969 
    70   // Zjistí typ prohlíµeèe
     70  // Zjistí typ prohlíľeče
    7171  StatUpdate('browser', $_SERVER['HTTP_USER_AGENT']);
    7272  // Zjistí DNS a IP adresu klienta
     
    100100  if(array_key_exists('name', $_GET) and array_key_exists('category', $_GET))
    101101  {
    102     $Output = '<div class="StatList"><strong>Roèní statistika</strong><br><br>'.
     102    $Output = '<div class="StatList"><strong>Roční statistika</strong><br><br>'.
    103103    '<table class="StatTable"><tr><th>Rok</th><th>Prohlédnutých stránek</th></tr>';
    104104
    105     // Zjisti rozmezí rokù
     105    // Zjisti rozmezí roků
    106106    DB_Select('stat', 'DISTINCT date', 'name="'.$_GET['name'].'" AND category="'.$_GET['category'].'"');
    107107    while($Row = DB_Row())
     
    113113            if($Year > $Max) $Max = $Year;
    114114    }
    115     // Naèti body rokù a body celkem
     115    // Načti body roků a body celkem
    116116    for($I=$Min;$I<=$Max;$I++)
    117117    {
     
    131131      '<td><img src="images/leftbar.gif" width="7" height="15"><img src="images/mainbar.gif" width="'.round($Percent*2).'" height="15"><img src="images/rightbar.gif" width="7" height="15">&nbsp; '.$Percent.'% ('.$Row[0].')</td></tr>';
    132132    }
    133     $Output .= '</table><a href="?module=stat&amp;category='.$_GET['category'].'">Zpátky pøehled statistiky</a></div>';
     133    $Output .= '</table><a href="?module=stat&amp;category='.$_GET['category'].'">Zpátky přehled statistiky</a></div>';
    134134  }
    135135  return($Output);
     
    137137
    138138
    139 // Zobrazí statistiku mìsícu //
     139// Zobrazí statistiku měsícu //
    140140function StatShowMonths()
    141141{
     
    144144  {
    145145 
    146     $Output = '<div class="StatList"><strong>Mìsíèní statistika pro rok '.$_GET['year'].'</strong><br><br>'.
    147     '<table class="StatTable" cellspacing="0"><tr><th>Mìsíc</th><th>Prohlédnutých stránek</th></tr>';
    148 
    149     // Spoèítej poèty pro mìsíce
     146    $Output = '<div class="StatList"><strong>Měsíční statistika pro rok '.$_GET['year'].'</strong><br><br>'.
     147    '<table class="StatTable" cellspacing="0"><tr><th>Měsíc</th><th>Prohlédnutých stránek</th></tr>';
     148
     149    // Spočítej počty pro měsíce
    150150    for($I=1;$I<13;$I++)
    151151    {
     
    165165      '<td><img src="images/leftbar.gif" width="7" height="15"><img src="images/mainbar.gif" width="'.round($Percent*2).'" height="15"><img src="images/rightbar.gif" width="7" height="15">&nbsp '.$Percent.'% ('.$Row[0].')</td></tr>';
    166166    }
    167     $Output .= '</table><a href="?module=stat&amp;period=years&amp;category='.$_GET['category'].'&amp;name='.$_GET['name'].'">Zpátky na statistiku rokù</a></div>';
     167    $Output .= '</table><a href="?module=stat&amp;period=years&amp;category='.$_GET['category'].'&amp;name='.$_GET['name'].'">Zpátky na statistiku roků</a></div>';
    168168    return($Output);
    169169  }
     
    175175  if(array_key_exists('name', $_GET) and array_key_exists('category', $_GET) and array_key_exists('year', $_GET) and array_key_exists('month', $_GET))
    176176  {
    177     $Output = '<div class="StatList"><strong>Denní statistika pro mìsic '.$StatMonths[$_GET['month']].'</strong><br><br>'.
     177    $Output = '<div class="StatList"><strong>Denní statistika pro měsic '.$StatMonths[$_GET['month']].'</strong><br><br>'.
    178178    '<table class="StatTable" cellspacing="0"><tr><th>Den</th><th>Prohlédnutých stránek</th></tr>';
    179179    for($I=1;$I<32;$I++)
     
    192192      '<td><img src="images/leftbar.gif" width="7" height="15"><img src="images/mainbar.gif" width="'.round($Percent*2).'" height="15"><img src="images/rightbar.gif" width="7" height="15">&nbsp '.$Percent.'% ('.$Row[0].')</td></tr>';
    193193    }
    194     $Output .= '</table><a href="?module=stat&period=months&name='.$_GET['name'].'&category='.$_GET['category'].'&year='.$_GET['year'].'">Zpátky na statistiku mìsícù</a></div>';
     194    $Output .= '</table><a href="?module=stat&period=months&name='.$_GET['name'].'&category='.$_GET['category'].'&year='.$_GET['year'].'">Zpátky na statistiku měsíců</a></div>';
    195195  }
    196196  return($Output);
     
    219219        DB_Select('stat', 'SUM(hits)', "name='".$Row['name']."' AND category='".$_GET['category']."'");
    220220        $Row2 = DB_Row();
    221         if($Row['name'] == 'direct') $Nazev = 'Zadáno pøímo'; else $Nazev = $Row['name'];
     221        if($Row['name'] == 'direct') $Nazev = 'Zadáno přímo'; else $Nazev = $Row['name'];
    222222        if($_GET['category'] == 'host') $Nazev = gethostbyaddr($Nazev);
    223223        $Output .= '<tr><td><a href="?module=stat&category='.$_GET['category'].'&period=years&name='.$Row['name'].'">'.$Nazev.'</a></td>'.
Note: See TracChangeset for help on using the changeset viewer.