You are here

function theme_menu_block_split_first_level_menu in Menu Block Split 5

Same name and namespace in other branches
  1. 5.2 menu_block_split.module \theme_menu_block_split_first_level_menu()

File

./menu_block_split.module, line 141
Allow to have an splitted menu within two blocks

Code

function theme_menu_block_split_first_level_menu($pid = 1) {
  if ($tree = menu_block_split_first_level_menu_tree($pid)) {
    return "\n<ul class=\"menu\">\n" . $tree . "\n</ul>\n";
  }
}