You are here

function google_analytics_counter_block_info in Google Analytics Counter 7.2

Same name and namespace in other branches
  1. 7.3 google_analytics_counter.module \google_analytics_counter_block_info()
  2. 7 google_analytics_counter.module \google_analytics_counter_block_info()

Implements hook_block_info().

File

./google_analytics_counter.module, line 126
Basic functions for this module.

Code

function google_analytics_counter_block_info() {
  $block = array();

  // Generate listing of blocks from this module, for the admin/block page
  $block[0]["info"] = t('Google Analytics Counter');
  return $block;
}