You are here

function footnotes_field_block_info in Footnotes 7.2

Same name and namespace in other branches
  1. 7.3 footnotes_field/footnotes_field.module \footnotes_field_block_info()

Implements hook_block_info().

File

footnotes_field/footnotes_field.module, line 78
Hooks and general logic for the Footnotes field module.

Code

function footnotes_field_block_info() {
  $blocks['footnotes'] = array(
    'info' => t('Footnotes: node detail'),
  );
  return $blocks;
}