You are here

function _footermap_check_menu_item in footermap: a footer site map 6

Same name and namespace in other branches
  1. 7 footermap.module \_footermap_check_menu_item()
1 call to _footermap_check_menu_item()
footermap_get_menu in ./footermap.module

File

./footermap.module, line 327

Code

function _footermap_check_menu_item($avail_menus, $item) {
  foreach ($avail_menus as $key => $mn) {
    if ($mn === $item->menu_name) {
      return TRUE;
    }
  }
  return FALSE;
}