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