Changeset 785 for trunk/Modules/Network/Network.php
- Timestamp:
- Jan 9, 2016, 1:08:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r774 r785 2 2 3 3 include_once(dirname(__FILE__).'/HostList.php'); 4 include_once(dirname(__FILE__).'/Availability.php');5 4 include_once(dirname(__FILE__).'/Subnet.php'); 6 5 include_once(dirname(__FILE__).'/Hosting.php'); … … 92 91 { 93 92 $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 />';95 93 $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />'; 96 94 $Output .= '<a href="'.$this->System->Link('/network/hosts/').'">Registrované zařízení</a><br />'; … … 124 122 $this->System->RegisterPage('network', 'PageNetwork'); 125 123 $this->System->RegisterPage(array('network', 'administration'), 'PageNetworkAdministration'); 126 $this->System->RegisterPage(array('network', 'availability'), 'PageAvailability');127 124 $this->System->RegisterPage(array('network', 'subnet'), 'PageSubnet'); 128 125 $this->System->RegisterPage(array('network', 'user-hosts'), 'PageNetworkHostList'); … … 167 164 'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true, 'NotInList' => true), 168 165 'API' => array('Type' => 'TDeviceAPIType', 'Caption' => 'API', 'Default' => '', 'Null' => true), 169 ),170 'Actions' => array(171 array('Caption' => 'Dostupnost zařízení', 'URL' => '/network/availability/'),172 166 ), 173 167 ));
Note:
See TracChangeset
for help on using the changeset viewer.