You are here

function mobile_tools_block_info in Mobile Tools 7.2

Same name and namespace in other branches
  1. 7.3 mobile_tools.module \mobile_tools_block_info()

Implements hook_block_info().

File

./mobile_tools.module, line 114
Functionality to ease the creation of mixed device environments.

Code

function mobile_tools_block_info() {
  $blocks = array();
  $blocks['mobile_tools'] = array(
    'info' => t('Mobile Tools message block'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}