Ignore:
Timestamp:
Jun 18, 2013, 8:30:40 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Do hlavní nabídky lze přidávat položky na určitou pozici.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/system.php

    r548 r549  
    146146  }
    147147 
    148   function RegisterMenuItem($MenuItem)
     148  function RegisterMenuItem($MenuItem, $Pos = NULL)
    149149  {
    150         $this->Menu[] = $MenuItem;
     150        if(is_null($Pos)) $this->Menu[] = $MenuItem;
     151          else {
     152                array_splice($this->Menu, $Pos, 0, array($MenuItem));
     153          }
    151154  }
    152155 
Note: See TracChangeset for help on using the changeset viewer.