Changeset 785 for trunk/Modules


Ignore:
Timestamp:
Jan 9, 2016, 1:08:20 PM (9 years ago)
Author:
chronos
Message:
Location:
trunk/Modules
Files:
1 deleted
2 edited

Legend:

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

    r774 r785  
    22
    33include_once(dirname(__FILE__).'/HostList.php');
    4 include_once(dirname(__FILE__).'/Availability.php');
    54include_once(dirname(__FILE__).'/Subnet.php');
    65include_once(dirname(__FILE__).'/Hosting.php');
     
    9291  {
    9392    $Output = '<a href="'.$this->System->Link('/network/frequency-plan/').'">Frekvenční plán</a><br />';
    94     $Output .= '<a href="'.$this->System->Link('/network/availability/').'">Měření dostupnosti zařízení</a><br />';
    9593    $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />';
    9694    $Output .= '<a href="'.$this->System->Link('/network/hosts/').'">Registrované zařízení</a><br />';
     
    124122    $this->System->RegisterPage('network', 'PageNetwork');
    125123    $this->System->RegisterPage(array('network', 'administration'), 'PageNetworkAdministration');
    126     $this->System->RegisterPage(array('network', 'availability'), 'PageAvailability');
    127124    $this->System->RegisterPage(array('network', 'subnet'), 'PageSubnet');
    128125    $this->System->RegisterPage(array('network', 'user-hosts'), 'PageNetworkHostList');
     
    167164        'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true, 'NotInList' => true),
    168165        'API' => array('Type' => 'TDeviceAPIType', 'Caption' => 'API', 'Default' => '', 'Null' => true),
    169       ),
    170       'Actions' => array(
    171         array('Caption' => 'Dostupnost zařízení', 'URL' => '/network/availability/'),
    172166      ),
    173167    ));
  • trunk/Modules/NetworkConfigRouterOS/Generators/NetwatchImport.php

    r781 r785  
    8787      }
    8888      $DbResult = $this->Database->update('NetworkDevice', '`LastOnline` < "'.TimeToMysqlDateTime($StartTime).'"', array('Online' => 0));
    89 
    90       // Update interface online statistics
    91       $DbResult = $this->Database->select('NetworkInterface', 'Id', '`Online` = 1');
    92       while($Interface = $DbResult->fetch_assoc())
    93       {
    94         $DbResult2 = $this->Database->select('NetworkInterfaceStat', '*', '(`NetworkInterface`="'.$Interface['Id'].'") AND (`Time` = DATE_FORMAT(NOW(), "%Y-%m-%d %H:00:00"))');
    95         if($DbResult2->num_rows == 0) $System->Database->query('REPLACE INTO `NetworkInterfaceStat` (`NetworkInterface`, `Time`, `PingCount`) VALUES ("'.$Interface['Id'].'", DATE_FORMAT(NOW(), "%Y-%m-%d %H:00:00"), 1)');
    96         else $this->Database->query('UPDATE `NetworkInterfaceStat` SET `PingCount` = `PingCount` + 1 WHERE (`NetworkInterface`="'.$Interface['Id'].'") AND (`Time` = DATE_FORMAT(NOW(), "%Y-%m-%d %H:00:00"))');
    97       }
    9889  }
    9990
Note: See TracChangeset for help on using the changeset viewer.