You are here

function _menu_block_block_view in Menu Block 6.2

Same name and namespace in other branches
  1. 5.2 menu_block.module \_menu_block_block_view()
  2. 5 menu_block.module \_menu_block_block_view()

Returns the 'view' $op info for hook_block().

Parameters

$delta: string The name of the block to render.

File

./menu_block.module, line 207
Provides configurable blocks of menu items.

Code

function _menu_block_block_view($delta) {
  return menu_tree_build(menu_block_get_config($delta));
}