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