Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/library/Fiktiv/View/Helper/RenderSubMenu.php
2010-09-10 18:22:37 +02:00

15 lines
No EOL
383 B
PHP

<?php
class Fiktiv_View_Helper_RenderSubMenu extends Zend_View_Helper_Abstract
{
public function renderSubMenu()
{
$active = $this->view->navigation()->menu()->findActive($this->view->navigation()->getContainer());
if ($active['page']->hasPages()) {
return $this->view->navigation()->menu()->setUlClass('b')->renderSubMenu();
}
}
}