Changeset 914 for trunk/Modules/Network/Network.php
- Timestamp:
- Sep 22, 2021, 10:34:30 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r912 r914 829 829 $DbResult = $this->Database->select('NetworkDevice', 'COUNT(*)', '1'); 830 830 $DbRow = $DbResult->fetch_row(); 831 $Output .= 'Síťových zařízení: registrovaných: '.$DbRow['0'];831 $Output .= 'Síťových zařízení: registrovaných: <a href="'.$this->System->Link('/is/?a=list&t=NetworkDevice').'">'.$DbRow['0'].'</a>'; 832 832 833 833 $DbResult = $this->Database->select('NetworkDevice', 'COUNT(*)', '`Used`=1'); 834 834 $DbRow = $DbResult->fetch_row(); 835 $Output .= ' použitých: '.$DbRow['0'].'<br>';835 $Output .= ' použitých: <a href="'.$this->System->Link('/is/?a=list&t=NetworkDevice&filter=1&FilterUsed=1').'">'.$DbRow['0'].'</a><br/>'; 836 836 837 837 $DbResult = $this->Database->select('NetworkInterface', 'COUNT(*)', '1'); 838 838 $DbRow = $DbResult->fetch_row(); 839 $Output .= 'Síťových rozhraní: '.$DbRow['0'].'<br>'; 839 $Output .= 'Síťových rozhraní: registrovaných: <a href="'.$this->System->Link('/is/?a=list&t=NetworkDevice').'">'.$DbRow['0'].'</a>'; 840 841 $DbResult = $this->Database->select('NetworkInterface', 'COUNT(*)', '`Enabled`=1'); 842 $DbRow = $DbResult->fetch_row(); 843 $Output .= ' použitých: <a href="'.$this->System->Link('/is/?a=list&t=NetworkInterface&filter=1&FilterEnabled=1').'">'.$DbRow['0'].'</a><br/>'; 840 844 841 845 $DbResult = $this->Database->select('NetworkSubnet', 'COUNT(*)', '1'); 842 846 $DbRow = $DbResult->fetch_row(); 843 $Output .= 'Síťových podsítí: '.$DbRow['0'].'<br/>';847 $Output .= 'Síťových podsítí: <a href="'.$this->System->Link('/is/?a=list&t=NetworkSubnet').'">'.$DbRow['0'].'</a><br/>'; 844 848 return $Output; 845 849 }
Note:
See TracChangeset
for help on using the changeset viewer.