Changeset 519 for trunk/Modules
- Timestamp:
- Apr 14, 2013, 6:18:49 PM (12 years ago)
- Location:
- trunk/Modules
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Chat/Chat.php
r498 r519 8 8 $this->FullTitle = 'Výpis z historie chatu'; 9 9 $this->ShortTitle = 'Historie chatu'; 10 $this-> NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'chat');10 $this->ParentClass = 'PagePortal'; 11 11 } 12 12 -
trunk/Modules/IS/IS.php
r508 r519 7 7 var $FullTitle = 'Správa dat'; 8 8 var $ShortTitle = 'Správa dat'; 9 var $ParentClass = 'PagePortal'; 9 10 var $MenuItems = array(); 10 11 -
trunk/Modules/Map/Map.php
r501 r519 7 7 var $FullTitle = 'Mapa sítě'; 8 8 var $ShortTitle = 'Mapa sítě'; 9 var $ParentClass = 'PagePortal'; 9 10 var $Load = 'initialize()'; 10 11 var $Unload = 'GUnload()'; -
trunk/Modules/Meals/Meals.php
r513 r519 5 5 var $FullTitle = 'Jídleníček jídelny Na kopečku'; 6 6 var $ShortTitle = 'Jídelníček'; 7 var $ParentClass = 'PagePortal'; 7 8 var $DayNames = array('Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'); 8 9 var $DayNamesShort = array('NE', 'PO', 'ÚT', 'ST', 'ČT', 'PÁ', 'SO'); … … 87 88 <br> 88 89 <strong>CENA JEDNOHO MENU JE '.$Row['Price'].' Kč</strong></td></tr>'; 89 //echo('<tr><td colspan="2">dd</td></tr>');90 90 $Output .= '</table>'; 91 92 //DB_Select('meals_info','*');93 //$Row = DB_Row();94 //echo($Row['info']);95 91 96 92 $Output .= '</body></html>'; -
trunk/Modules/Meteostation/Meteostation.php
r501 r519 8 8 var $FullTitle = 'Stav meteostanice'; 9 9 var $ShortTitle = 'Meteostanice'; 10 10 var $ParentClass = 'PagePortal'; 11 11 12 function Show() 12 13 { -
trunk/Modules/Network/Administration.php
r518 r519 8 8 $this->FullTitle = 'Administrace sítě'; 9 9 $this->ShortTitle = 'Administrace sítě'; 10 $this-> NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'sprava');10 $this->ParentClass = 'PageNetwork'; 11 11 } 12 12 -
trunk/Modules/Network/Availability.php
r518 r519 5 5 var $FullTitle = 'Dostupnost aktivních prvků sítě'; 6 6 var $ShortTitle = 'Dostupnost sítě'; 7 var $ParentClass = 'PageNetwork'; 7 8 var $PeriodCount = 24; 8 9 var $Period = array( -
trunk/Modules/Network/HostList.php
r501 r519 7 7 var $FullTitle = 'Seznam registrovaných počítačů'; 8 8 var $ShortTitle = 'Seznam počítačů'; 9 9 var $ParentClass = 'PageNetwork'; 10 10 11 function Show() 11 12 { -
trunk/Modules/Network/Hosting.php
r518 r519 5 5 var $FullTitle = 'Hostované projekty'; 6 6 var $ShortTitle = 'Hostované projekty'; 7 var $ParentClass = 'PageNetwork'; 7 8 8 9 function Show() -
trunk/Modules/Network/Network.php
r518 r519 11 11 { 12 12 var $FullTitle = 'Technické informace o síti'; 13 var $ShortTitle = 'Technické informace'; 13 var $ShortTitle = 'Síť'; 14 var $ParentClass = 'PagePortal'; 14 15 15 16 function Show() … … 17 18 if(count($this->System->PathItems) > 1) 18 19 { 19 if($this->System->PathItems[1] == 'administration') $Output = $this->NewPage('PageNetworkAdministration')->Show(); 20 else if($this->System->PathItems[1] == 'availability') $Output = $this->NewPage('PageAvailability')->Show(); 21 else if($this->System->PathItems[1] == 'subnet') $Output = $this->NewPage('PageSubnet')->Show(); 22 else if($this->System->PathItems[1] == 'user_hosts') $Output = $this->NewPage('PageNetworkHostList')->Show(); 23 else if($this->System->PathItems[1] == 'hosting') $Output = $this->NewPage('PageHosting')->Show(); 24 else if($this->System->PathItems[1] == 'hosts') $Output = $this->NewPage('PageHostList')->Show(); 25 else $Output = $this->ShowInformation(); 20 $this->ClearPage = true; 21 if($this->System->PathItems[1] == 'administration') $Output = $this->NewPage('PageNetworkAdministration')->GetOutput(); 22 else if($this->System->PathItems[1] == 'availability') $Output = $this->NewPage('PageAvailability')->GetOutput(); 23 else if($this->System->PathItems[1] == 'subnet') $Output = $this->NewPage('PageSubnet')->GetOutput(); 24 else if($this->System->PathItems[1] == 'user_hosts') $Output = $this->NewPage('PageNetworkHostList')->GetOutput(); 25 else if($this->System->PathItems[1] == 'hosting') $Output = $this->NewPage('PageHosting')->GetOutput(); 26 else if($this->System->PathItems[1] == 'hosts') $Output = $this->NewPage('PageHostList')->GetOutput(); 27 else { 28 $this->ClearPage = false; 29 $Output = $this->ShowInformation(); 30 } 26 31 } else $Output = $this->ShowInformation(); 27 32 return($Output); -
trunk/Modules/Network/Subnet.php
r518 r519 8 8 $this->FullTitle = 'Informace o podsítích'; 9 9 $this->ShortTitle = 'Podsítě'; 10 $this->ParentClass = 'PageNetwork'; 10 11 } 11 12 -
trunk/Modules/Network/UserHosts.php
r518 r519 8 8 $this->FullTitle = 'Registrované počítače'; 9 9 $this->ShortTitle = 'Registrované počítače'; 10 $this->ParentClass = 'PageNetwork'; 10 11 } 11 12 -
trunk/Modules/NetworkShare/SharePage.php
r505 r519 3 3 class SharePage extends Page 4 4 { 5 var $FullTitle = 'Vyhledávání souborů'; 6 var $ShortTitle = 'Vyhledávání souborů'; 5 var $FullTitle = 'Prohledávání sdílených souborů'; 6 var $ShortTitle = 'Sdílené soubory'; 7 var $ParentClass = 'PagePortal'; 7 8 var $Dependencies = array('Log'); 8 9 var $MaxNesting = 20; // Maximální vnoření -
trunk/Modules/NetworkTopology/NetworkTopology.php
r517 r519 5 5 var $FullTitle = 'Grafické zobrazení topologie sítě'; 6 6 var $ShortTitle = 'Topologie sítě'; 7 var $ParentClass = 'PagePortal'; 7 8 var $TopHostName = 'NIX-ROUTER'; 8 9 -
trunk/Modules/Portal/Portal.php
r518 r519 6 6 { 7 7 var $FullTitle = 'Zděchovský rozcestník'; 8 var $ShortTitle = ' ';8 var $ShortTitle = 'Rozcestník'; 9 9 10 10 function ShowLinks($HyperlinkGroup) -
trunk/Modules/TV/TV.php
r501 r519 7 7 var $FullTitle = 'Síťová televize'; 8 8 var $ShortTitle = 'IPTV'; 9 var $ParentClass = 'PagePortal'; 9 10 10 11 function Show() -
trunk/Modules/User/User.php
r496 r519 27 27 { 28 28 parent::Start(); 29 $this->System->RegisterPage('userlist .php', 'PageUserList');29 $this->System->RegisterPage('userlist', 'PageUserList'); 30 30 } 31 31 -
trunk/Modules/User/UserList.php
r498 r519 5 5 var $FullTitle = 'Seznam registrovaných uživatelů'; 6 6 var $ShortTitle = 'Seznam uživatelů'; 7 7 var $ParentClass = 'PagePortal'; 8 8 9 function Show() 9 10 { -
trunk/Modules/WebCam/WebCam.php
r498 r519 5 5 var $FullTitle = 'Webová kamera'; 6 6 var $ShortTitle = 'Kamera'; 7 var $ParentClass = 'PagePortal'; 7 8 8 9 function Show()
Note:
See TracChangeset
for help on using the changeset viewer.