You are here

function widgets_block_view in Widgets 6

Same name and namespace in other branches
  1. 7 widgets.module \widgets_block_view()

View operation of hook_block().

1 call to widgets_block_view()
widgets_block in ./widgets.module
Implementation of hook_block().

File

./widgets.block.inc, line 36
Implementaion of block functions for Widgets module.

Code

function widgets_block_view($delta, $edit) {
  $block['subject'] = '<none>';
  $block['content'] = widgets_block_content($delta);
  return $block;
}