Ignore:
Timestamp:
Sep 22, 2021, 10:34:30 PM (3 years ago)
Author:
chronos
Message:
  • Added: Made IS dashboard numbers as links with filters.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Network/Network.php

    r912 r914  
    829829    $DbResult = $this->Database->select('NetworkDevice', 'COUNT(*)', '1');
    830830    $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&amp;t=NetworkDevice').'">'.$DbRow['0'].'</a>';
    832832
    833833    $DbResult = $this->Database->select('NetworkDevice', 'COUNT(*)', '`Used`=1');
    834834    $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&amp;t=NetworkDevice&amp;filter=1&amp;FilterUsed=1').'">'.$DbRow['0'].'</a><br/>';
    836836
    837837    $DbResult = $this->Database->select('NetworkInterface', 'COUNT(*)', '1');
    838838    $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&amp;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&amp;t=NetworkInterface&amp;filter=1&amp;FilterEnabled=1').'">'.$DbRow['0'].'</a><br/>';
    840844
    841845    $DbResult = $this->Database->select('NetworkSubnet', 'COUNT(*)', '1');
    842846    $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&amp;t=NetworkSubnet').'">'.$DbRow['0'].'</a><br/>';
    844848    return $Output;
    845849  }
Note: See TracChangeset for help on using the changeset viewer.