Changeset 386 for trunk/Modules/Network/NetworkInformation.php
- Timestamp:
- Jan 24, 2012, 3:17:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/NetworkInformation.php
r361 r386 1 1 <?php 2 2 3 class NetworkInformationPage extends Page3 class WifiChannelsPage extends Page 4 4 { 5 var $FullTitle = 'Technické informace o síti'; 6 var $ShortTitle = 'Technické informace'; 5 function __construct() 6 { 7 parent::__construct(); 8 $this->FullTitle = 'Obsazení Wifi kanálů'; 9 $this->ShortTitle = 'Wifi kanály'; 10 $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'wifi-kanaly'); 11 } 7 12 8 13 function Show() 9 14 { 10 $Output = '';11 if(!array_key_exists('section', $_GET)) $_GET['section'] = '';12 switch($_GET['section'])13 {14 case 'obsazeni_wifi_kanalu':15 15 // http://en.wikipedia.org/wiki/List_of_WLAN_channels 16 16 //$ChannelList = array(2412 => 1, 2417 => 2, 2422 => 3, 2427 => 4, 2432 => 5, 2437 => 6, 2442 => 7, 2447 => 8, 2452 => 9, 2457 => 10, 2462 => 11, 2467 => 12, 2472 => 13, 5200 => 40, 5205 => 41, 5210 => 42, 5215 => 43, 5220 => 44, 5225 => 45, 5230 => 46, 5235 => 47, 5240 => 48, 5245 => 49, 5250 => 50, 5255 => 51, 5260 => 52, 5265 => 53, 5270 => 54, 5275 => 55, 5280 => 56, 5285 => 57, 5290 => 58, 5295 => 59, 5300 => 60, 5500 => 100, 5520 => 104, 5540 => 108, 5560 => 112, 5580 => 116, 5600 => 120, 5620 => 124, 5640 => 128, 5660 => 132, 5700 => 140, 5720 => 144); 17 $Output .= '<div align="center">'.17 $Output = '<div align="center">'. 18 18 '<a href="?section=obsazeni_wifi_kanalu&range=a">Pásmo 2,4 GHz (a)</a> '. 19 19 '<a href="?section=obsazeni_wifi_kanalu&range=bc">Pásmo 5 GHz dolní (b, c)</a> '. … … 67 67 } 68 68 $Output .= '</table>'; 69 break; 70 default: 71 $Output .= '<a href="?section=obsazeni_wifi_kanalu">Obsazení Wi-Fi kanálů</a><br />'; 72 $Output .= '<a href="dostupnost/">Měření dostupnosti zařízení</a><br />'; 73 $Output .= '<a href="podsite/">Výpis registrovaných podsítí</a><br />'; 74 //$Output .= '<a href="tkr.php">Kanály kabelové televize</a>'; 75 } 69 return($Output); 70 } 71 } 72 73 class NetworkInformationPage extends Page 74 { 75 var $FullTitle = 'Technické informace o síti'; 76 var $ShortTitle = 'Technické informace'; 77 78 function Show() 79 { 80 $Output = '<a href="wifi-kanaly/">Obsazení Wi-Fi kanálů</a><br />'; 81 $Output .= '<a href="dostupnost/">Měření dostupnosti zařízení</a><br />'; 82 $Output .= '<a href="podsite/">Výpis registrovaných podsítí</a><br />'; 83 //$Output .= '<a href="tkr.php">Kanály kabelové televize</a>'; 76 84 return($Output); 77 85 }
Note:
See TracChangeset
for help on using the changeset viewer.