You are here

function theme_google_analytics_reports_path_mini in Google Analytics Reports 6

Same name and namespace in other branches
  1. 7 google_analytics_reports/google_analytics_reports.theme.inc \theme_google_analytics_reports_path_mini()

Theme function for path_mini block.

1 theme call to theme_google_analytics_reports_path_mini()
google_analytics_reports_path_mini_build in google_analytics_reports/google_analytics_reports.blocks.inc
Generates a block with the current page statistics.

File

google_analytics_reports/google_analytics_reports.theme.inc, line 84
Theme preprocess functions for google analytics.

Code

function theme_google_analytics_reports_path_mini($report) {
  return $report['chart'] . '<p>' . $report['views'] . '</p>';
}