Changeset 912 for trunk/Modules/Network/Network.php
- Timestamp:
- Aug 3, 2021, 11:38:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 }
Note:
See TracChangeset
for help on using the changeset viewer.