Exemple #1
0
 public function addSubItem($label, $link)
 {
     $item = new My_Menu_Item();
     $item->add($label, $link);
     $this->itens[] = $item;
     return $this;
 }
Exemple #2
0
 public function add($label, $link, $subItens = array())
 {
     $item = new My_Menu_Item();
     $item->add($label, $link);
     $this->itens[] = $item;
     return $item;
 }