You are here

function theme_bigmenu_overview_form in Big Menu 6

Same name and namespace in other branches
  1. 7 bigmenu.admin.inc \theme_bigmenu_overview_form()

Theme the menu overview form into a table.

A stub to core. No need to change anything. It just adds an extra js file and passes it through.

File

./bigmenu.admin.inc, line 287
Administrative page callbacks for bigmenu module.

Code

function theme_bigmenu_overview_form($form) {
  drupal_add_js(drupal_get_path('module', 'bigmenu') . '/bigmenu.js');
  drupal_add_css(drupal_get_path('module', 'bigmenu') . '/bigmenu.css');
  return theme('menu_overview_form', $form);
}