Where do i find the code behind for a drupal 6 menu? -
i have taken on drupal 6 website , need change link image.
the image menu item , menu items path not change when change in backend. assume whole file has been on written not sure find file. have looked in "bartik" themes file .tpl.php files cant find anything.
any please
the core code behind menu in includes/menu.inc, have problem if have overwritten initial logic there.
the first thing know drupal — not override core behavior.
the primary theme functions, involved in menu rendering are:
theme_menu_item
generate html output menu item , submenu.theme_menu_item_link
generate html output single menu link.theme_menu_tree
generate html output menu tree
i recommend check source first on api.drupal.org/api/drupal/includesmenu.inc/6
if none of above makes sense, please check this article learn, how override theme functions.
Comments
Post a Comment