예제 #1
0
 /**
  * {@inheritDoc}
  */
 protected function getFirstLevelParent()
 {
     $ol = new NodeElement();
     $ol->openTag('ol')->addAttribute('class', 'dd-list')->finalize();
     return $ol->render();
 }
예제 #2
0
파일: Dropdown.php 프로젝트: bono-cms/Menu
 /**
  * {@inheritDoc}
  */
 protected function getChildCloser()
 {
     $li = new NodeElement();
     $li->closeTag('li');
     return $li->render();
 }