getOption('id'); foreach ($menu as $item) { if (!empty($item['sub'])) { if ($this->_getActiveIds($item['sub'], $ids)) { $ids[] = $item['id']; return true; } } if ($item['id'] == $currentId) { $ids[] = $currentId; return true; } } return false; } }