You are here

function analytics_event_overview in Analytics 6

Page callback for a specific event overview.

Parameters

$event:

Return value

unknown_type

1 string reference to 'analytics_event_overview'
analytics_ui_menu in modules/analytics_ui/analytics_ui.module
Implementation of hook_menu().

File

modules/analytics_ui/analytics_ui.admin.inc, line 66

Code

function analytics_event_overview($event) {
  $overview['total_points'] = $event
    ->getCountEventInstance();
  $overview['daily_data'] = $event
    ->getDailyHistoryEventInstance();
  $overview['property_names'] = $event
    ->getPropertyList();
  return theme('analytics_event_overview', $overview);
}