Exemplo n.º 1
0
 /**
  *
  */
 public function toHtml()
 {
     return $this->renderer->toHtml($this);
 }
Exemplo n.º 2
0
Arquivo: Item.php Projeto: a3gz/menu
 /**
  * @return string A rendered menu as HTML 
  */
 public function toHtml()
 {
     $this->sortTree($this->children);
     return $this->renderer->toHtml($this);
 }