function _footermap_check_menu_item in footermap: a footer site map 7
Same name and namespace in other branches
- 6 footermap.module \_footermap_check_menu_item()
1 call to _footermap_check_menu_item()
File
- ./
footermap.module, line 368
Code
function _footermap_check_menu_item($avail_menus, $item) {
foreach ($avail_menus as $key => $mn) {
if ($mn === $item->menu_name) {
return TRUE;
}
}
return FALSE;
}