You are here

function _menu_attach_block_defaults in Menu Attach Block 7

Returns an array with the structure of MAB settings.

Return value

array An array with the default options structure.

1 call to _menu_attach_block_defaults()
menu_attach_block_link in ./menu_attach_block.module
Override theme_link().

File

./menu_attach_block.module, line 496
Module to enable adding a block to menu item.

Code

function _menu_attach_block_defaults() {
  return array(
    'name' => NULL,
    'use_ajax' => NULL,
    'no_drop' => NULL,
    'dropped' => NULL,
    'on_hover' => NULL,
    'orientation' => NULL,
    'mlid' => NULL,
    'plid' => NULL,
    'allow_html' => FALSE,
  );
}