Changeset 385 for trunk/Modules/Network/Network.php
- Timestamp:
- Jan 24, 2012, 11:40:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/Network.php
r379 r385 12 12 class NetworkPage extends Page 13 13 { 14 var $FullTitle = 'Síť'; 15 var $ShortTitle = 'Síť'; 16 var $RowPerPage = 20; 17 14 function __construct() 15 { 16 parent::__construct(); 17 $this->FullTitle = 'Síť'; 18 $this->ShortTitle = 'Síť'; 19 $this->RowPerPage = 20; 20 $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'sit'); 21 } 22 18 23 function Show() 19 24 { … … 36 41 $Page->Config = &$this->Config; 37 42 $Page->System = &$this->System; 38 return($Page->Show()); 43 $Output = $Page->Show(); 44 array_shift($Page->NavigationPath); 45 $this->NavigationPath = array_merge($this->NavigationPath, $Page->NavigationPath); 46 return($Output); 39 47 } 40 48 }
Note:
See TracChangeset
for help on using the changeset viewer.