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