You are here

function homebox_block_info in Homebox 7.3

Same name and namespace in other branches
  1. 7.2 homebox.module \homebox_block_info()

Implements hook_block_info().

File

./homebox.module, line 770
Homebox main file, takes care of global functions settings constants, etc.

Code

function homebox_block_info() {
  $blocks['custom'] = array(
    'info' => t('Homebox custom block'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}