You are here

function widgets_block_list in Widgets 6

List operation of hook_block().

File

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

Code

function widgets_block_list($delta, $edit) {
  $blocks[0] = array(
    'info' => t('Widgets'),
  );
  return $blocks;
}