You are here

function piwik_reports_block_info in Piwik Reports 7.3

Same name and namespace in other branches
  1. 7.4 piwik_reports.module \piwik_reports_block_info()

Implements hook_block_info().

File

./piwik_reports.module, line 272
Defines features and functions common to Piwik Reports.

Code

function piwik_reports_block_info() {
  $blocks['piwik_page_report'] = array(
    'info' => t('Piwik Page Statistics'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}