You are here

function google_analytics_reports_path_mini_ajax in Google Analytics Reports 7

Same name and namespace in other branches
  1. 6 google_analytics_reports/google_analytics_reports.blocks.inc \google_analytics_reports_path_mini_ajax()

Page callback for google-analytics-reports/ajax/path-mini.

1 string reference to 'google_analytics_reports_path_mini_ajax'
google_analytics_reports_menu in google_analytics_reports/google_analytics_reports.module
Implementation of hook_menu().

File

google_analytics_reports/google_analytics_reports.blocks.inc, line 10
Callbacks for building blocks.

Code

function google_analytics_reports_path_mini_ajax() {
  $path = isset($_GET['path']) ? $_GET['path'] : '/index.html';
  return drupal_json_output(array(
    'content' => google_analytics_reports_path_mini_build($path),
  ));
}