You are here

function menu_block_settings in Menu Block 5

Display the settings form for Menu block.

Return value

The form array.

1 string reference to 'menu_block_settings'
menu_block_menu in ./menu_block.module
Implementation of hook_menu().

File

./menu_block.module, line 39

Code

function menu_block_settings() {

  // The settings form is seldom used, so we store it in a separate file.
  include_once './' . drupal_get_path('module', 'menu_block') . '/menu_block.admin.inc';
  return _menu_block_settings();
}