You are here

function google_analytics_reports_theme in Google Analytics Reports 7

Same name and namespace in other branches
  1. 6 google_analytics_reports/google_analytics_reports.module \google_analytics_reports_theme()

Implements hook_theme().

File

google_analytics_reports/google_analytics_reports.module, line 93
Front-end interfaces that use the Google Analytics API module.

Code

function google_analytics_reports_theme() {
  return array(
    'google_analytics_reports_summary' => array(
      'variables' => array(
        'summary' => NULL,
      ),
      'template' => 'google_analytics_reports_summary',
      'file' => 'google_analytics_reports.theme.inc',
    ),
    'google_analytics_reports_detail' => array(
      'variables' => array(
        'report' => NULL,
      ),
      'template' => 'google_analytics_reports_detail',
      'file' => 'google_analytics_reports.theme.inc',
    ),
    'google_analytics_reports_path_mini' => array(
      'variables' => array(
        'report' => NULL,
      ),
      'file' => 'google_analytics_reports.theme.inc',
    ),
    'google_analytics_reports_dashboard' => array(
      'variables' => array(
        'report' => NULL,
      ),
      'file' => 'google_analytics_reports.theme.inc',
    ),
  );
}