Changeset 912 for trunk/Modules/Network
- Timestamp:
- Aug 3, 2021, 11:38:29 AM (3 years ago)
- Location:
- trunk/Modules/Network
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/HostList.php
r887 r912 8 8 { 9 9 parent::__construct($System); 10 $this-> FullTitle = 'Seznam registrovanýchpočítačů';11 $this-> ShortTitle = 'Seznampočítačů';10 $this->Title = 'Seznam počítačů'; 11 $this->Description = 'Seznam registrovaných počítačů'; 12 12 $this->ParentClass = 'PageNetwork'; 13 13 } -
trunk/Modules/Network/Hosting.php
r887 r912 6 6 { 7 7 parent::__construct($System); 8 $this->FullTitle = 'Hostované projekty'; 9 $this->ShortTitle = 'Hostované projekty'; 8 $this->Title = 'Hostované projekty'; 10 9 $this->ParentClass = 'PageNetwork'; 11 10 } -
trunk/Modules/Network/Network.php
r911 r912 12 12 { 13 13 parent::__construct($System); 14 $this-> FullTitle = 'Výpis obsazení frekvenčních kanálů';15 $this-> ShortTitle = 'Frekvenční plán';14 $this->Title = 'Frekvenční plán'; 15 $this->Description = 'Výpis obsazení frekvenčních kanálů'; 16 16 $this->ParentClass = 'PageNetwork'; 17 17 } … … 83 83 { 84 84 parent::__construct($System); 85 $this-> FullTitle = 'Technické informace o síti';86 $this-> ShortTitle = 'Síť';85 $this->Title = 'Síť'; 86 $this->Description = 'Technické informace o síti'; 87 87 $this->ParentClass = 'PagePortal'; 88 88 } … … 895 895 $Output .= $StillOffline['Report']; 896 896 $Offline = $this->OnlineList('Offline', 0, -1, 0); 897 return array('Report' => $Output, 'Count' => $Offline['Count'], ' ShortTitle' => 'Odezva');897 return array('Report' => $Output, 'Count' => $Offline['Count'], 'Title' => 'Odezva'); 898 898 } 899 899 … … 947 947 $Output .= $StillOffline['Report']; 948 948 $Offline = $this->PortCheckList('Offline', 0, -1, 0); 949 return array('Report' => $Output, 'Count' => $Offline['Count'], ' ShortTitle' => 'Port');949 return array('Report' => $Output, 'Count' => $Offline['Count'], 'Title' => 'Port'); 950 950 } 951 951 } -
trunk/Modules/Network/Subnet.php
r887 r912 6 6 { 7 7 parent::__construct($System); 8 $this-> FullTitle = 'Informace o podsítích';9 $this-> ShortTitle = 'Podsítě';8 $this->Title = 'Podsítě'; 9 $this->Description = 'Informace o podsítích'; 10 10 $this->ParentClass = 'PageNetwork'; 11 11 } -
trunk/Modules/Network/UserHosts.php
r887 r912 6 6 { 7 7 parent::__construct($System); 8 $this->FullTitle = 'Registrované počítače'; 9 $this->ShortTitle = 'Registrované počítače'; 8 $this->Title = 'Registrované počítače'; 10 9 $this->ParentClass = 'PageNetwork'; 11 10 }
Note:
See TracChangeset
for help on using the changeset viewer.