Ignore:
Timestamp:
Jan 24, 2012, 11:40:43 AM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Sestavení navigačního řádku se nyní provádí postupným připojováním položek namísto globálního seznamu všeho.
File:
1 edited

Legend:

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

    r379 r385  
    1212class NetworkPage extends Page
    1313{
    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 
    1823  function Show()
    1924  {
     
    3641      $Page->Config = &$this->Config;
    3742      $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);
    3947    }
    4048  } 
Note: See TracChangeset for help on using the changeset viewer.