You are here

function contactinfo_block_info in Contact Info 7

Implements hook_block_info().

File

./contactinfo.module, line 168
Collects contact information and displays it in an hCard block.

Code

function contactinfo_block_info() {
  $blocks['hcard'] = array(
    'info' => 'Contact information',
    'weight' => 10,
    'status' => 1,
    'region' => 'footer',
  );
  return $blocks;
}