Changeset 874 for trunk/Modules/Network
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- Location:
- trunk/Modules/Network
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/HostList.php
r873 r874 12 12 { 13 13 if (!$this->System->User->CheckPermission('Network', 'ShowHostList')) 14 return ('Nemáte oprávnění');14 return 'Nemáte oprávnění'; 15 15 16 16 if (array_key_exists('admin', $_GET)) $Where = 'AND NetworkDevice.Type IN (1,4,5) '; … … 52 52 } 53 53 $Output .= '</table></div>'; 54 return ($Output);54 return $Output; 55 55 } 56 56 } -
trunk/Modules/Network/Hosting.php
r873 r874 16 16 } 17 17 $Output .= '</table>'; 18 return ($Output);18 return $Output; 19 19 } 20 20 } -
trunk/Modules/Network/Network.php
r873 r874 69 69 } 70 70 $Output .= '</table>'; 71 return ($Output);71 return $Output; 72 72 } 73 73 } … … 85 85 $Output = $this->PageNotFound(); 86 86 } else $Output = $this->ShowInformation(); 87 return ($Output);87 return $Output; 88 88 } 89 89 … … 91 91 { 92 92 if (!$this->System->User->CheckPermission('Network', 'ShowInfo')) 93 return ('Nemáte oprávnění');93 return 'Nemáte oprávnění'; 94 94 95 95 $Output = '<a href="'.$this->System->Link('/network/frequency-plan/').'">Frekvenční plán</a><br />'; 96 96 $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />'; 97 97 $Output .= '<a href="'.$this->System->Link('/network/hosts/').'">Registrované zařízení</a><br />'; 98 return ($Output);98 return $Output; 99 99 } 100 100 } … … 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'], 'ShortTitle' => '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'], 'ShortTitle' => 'Port'); 950 950 } 951 951 } -
trunk/Modules/Network/Subnet.php
r873 r874 54 54 $Output .= '</table>'; 55 55 $Output .= $PageList['Output']; 56 return ($Output);56 return $Output; 57 57 } 58 58 } -
trunk/Modules/Network/UserHosts.php
r873 r874 15 15 global $Config; 16 16 17 if ($this->System->User->User['Id'] == '') return ($this->SystemMessage('Nepovolený přístup', 'Nemáte oprávnění pro tuto operaci'));17 if ($this->System->User->User['Id'] == '') return $this->SystemMessage('Nepovolený přístup', 'Nemáte oprávnění pro tuto operaci'); 18 18 $Output = '<div align="center" style="font-size: small;"><table class="WideTable">'; 19 19 $Output .= '<tr><th>Jméno počítače</th><th>Místní adresa</th><th>Veřejná adresa</th><th>Fyzická adresa</th><th>Typ</th><th>Naposledy online</th></tr>'; … … 39 39 } 40 40 $Output .= '</table></div>'; 41 return ($Output);41 return $Output; 42 42 } 43 43 }
Note:
See TracChangeset
for help on using the changeset viewer.