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