You are here

function dxpr_theme_helper_block_info in DXPR Theme Helper 7

Implements hook_block_info().

File

./dxpr_theme_helper.module, line 53

Code

function dxpr_theme_helper_block_info() {
  $blocks = array();
  $blocks['full_screen_search'] = array(
    'info' => t('Full screen search'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}