<?php
include_once('global.php');

class CableTVChennelListPage extends Page
{
  var $FullTitle = 'Seznam televizních kanálů místní kabelové televize';
  var $ShortTitle = 'Kanály kabelové televize';

  function Show()
  {
    $Output = '<div align="center"><strong>Výpis kanálů:</strong><br>'.
'<table class="WideTable">'.
'<tr><th>Číslo</th<th>Jméno stanice</th><th>Frekvence [MHz]</th><th>Jazyk</th></tr>';
    $DbResult = $this->Database->select('TKR', '*', ' 1 ORDER BY Id');
    while($Row = $DbResult->fetch_array())
    {
      $Output .= '<tr><td>'.$Row['Id'].'</td><td><a href="'.$Row['Homepage'].'">'.$Row['Name'].'</a></td><td align="right">'.($Row['Frequency'] / 1000).'</td><td>'.$Row['Language'].'</td></tr>';
    }
    $Output .= '</table>Aktualizováno dne 17.12.2007<br></div>';
    return($Output);
  }
}

$System->AddModule(new CableTVChennelListPage());
$System->Modules['CableTVChennelListPage']->GetOutput();

?>
