Changeset 518 for trunk/Modules/Network/Administration.php
- Timestamp:
- Apr 14, 2013, 5:15:25 PM (12 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Administration.php
r516 r518 1 1 <?php 2 2 3 include_once('../Common/Global.php'); 4 5 class NetworkAdministrationPage extends Page 3 class PageNetworkAdministration extends Page 6 4 { 7 var $FullTitle = 'Administrace sítě'; 8 var $ShortTitle = 'Administrace sítě'; 5 function __construct() 6 { 7 parent::__construct(); 8 $this->FullTitle = 'Administrace sítě'; 9 $this->ShortTitle = 'Administrace sítě'; 10 $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'sprava'); 11 } 9 12 10 13 function Show() … … 43 46 } 44 47 45 $System->AddModule(new NetworkAdministrationPage());46 $System->Modules['NetworkAdministrationPage']->GetOutput();47 48 48 ?>
Note:
See TracChangeset
for help on using the changeset viewer.