mandrill_reports.module in Mandrill 7.2
Same filename and directory in other branches
Main module functions for mandrill_reports.
File
modules/mandrill_reports/mandrill_reports.moduleView source
<?php
/**
* @file
* Main module functions for mandrill_reports.
*/
/**
* Implements hook_menu().
*/
function mandrill_reports_menu() {
$items = array();
$items['admin/reports/mandrill'] = array(
'title' => 'Mandrill',
'page callback' => 'mandrill_reports_dashboard_page',
'access arguments' => array(
'view mandrill reports',
),
'description' => 'View Mandrill dashboard.',
);
$items['admin/reports/mandrill/dashboard'] = array(
'title' => 'Dashboard',
'type' => MENU_DEFAULT_LOCAL_TASK,
'weight' => -10,
);
$items['admin/reports/mandrill/summary'] = array(
'title' => 'Account summary',
'page callback' => 'mandrill_reports_summary_page',
'access arguments' => array(
'view mandrill reports',
),
'description' => 'View account summary.',
'type' => MENU_LOCAL_TASK,
);
return $items;
}
/**
* Implements hook_permission().
*/
function mandrill_reports_permission() {
return array(
'view mandrill reports' => array(
'title' => t('View Mandrill reports'),
'description' => t('View all Mandrill reports.'),
),
);
}
/**
* Return an associative array containing raw stats.
*
* @return array
* Associative array containing report data.
*/
function mandrill_reports_data() {
if ($cache = cache_get('mandrill_report_data')) {
return $cache->data;
}
$data = array();
$api = mandrill_get_api_object();
if ($api) {
// Basic user info.
$data['user'] = $api->users
->info();
// All time.
$data['all_time_series'] = $api->tags
->allTimeSeries();
}
else {
drupal_set_message(t('Please enter a Mandrill API key to use reports.'));
drupal_goto('admin/config/services/mandrill');
}
return $data;
}
/**
* Page callback for rendering stats.
*
* @return array
* Render array.
*/
function mandrill_reports_dashboard_page() {
$data = mandrill_reports_data();
$settings = array();
// All time series chart data.
foreach ($data['all_time_series'] as $series) {
$settings['mandrill_reports']['volume'][] = array(
'date' => $series['time'],
'sent' => $series['sent'],
'bounced' => $series['hard_bounces'] + $series['soft_bounces'],
'rejected' => $series['rejects'],
);
$settings['mandrill_reports']['engagement'][] = array(
'date' => $series['time'],
'open_rate' => $series['sent'] == 0 ? 0 : $series['unique_opens'] / $series['sent'],
'click_rate' => $series['sent'] == 0 ? 0 : $series['unique_clicks'] / $series['sent'],
);
}
$path = drupal_get_path('module', 'mandrill_reports');
$render = array(
'#attached' => array(
'js' => array(
array(
'data' => 'https://www.google.com/jsapi',
'type' => 'external',
),
$path . '/mandrill_reports.js',
array(
'data' => $settings,
'type' => 'setting',
),
),
),
'message' => array(
'#markup' => t('The following reports are based on Mandrill data from the last 30 days. For more comprehensive data, please visit your !dashboard. !cache to ensure the data is current.', array(
'!dashboard' => l(t('Mandrill Dashboard'), 'https://mandrillapp.com/'),
'!cache' => l(t('Clear your cache'), 'admin/config/development/performance'),
)),
),
'volume' => array(
'#prefix' => '<h2>' . t('Sending Volume') . '</h2>',
'#markup' => '<div id="mandrill-volume-chart"></div>',
),
'engagement' => array(
'#prefix' => '<h2>' . t('Average Open and Click Rate') . '</h2>',
'#markup' => '<div id="mandrill-engage-chart"></div>',
),
);
return $render;
}
/**
* Displays summary information for the active API user.
*/
function mandrill_reports_summary_page() {
$data = mandrill_reports_data();
$info = $data['user'];
$header = array(
t('Range'),
t('Sent'),
t('hard_bounces'),
t('soft_bounces'),
t('Rejects'),
t('Complaints'),
t('Unsubs'),
t('Opens'),
t('unique_opens'),
t('Clicks'),
t('unique_clicks'),
);
$rows = array();
foreach ($info['stats'] as $key => $stat) {
$rows[] = array(
str_replace('_', ' ', $key),
$stat['sent'],
$stat['hard_bounces'],
$stat['soft_bounces'],
$stat['rejects'],
$stat['complaints'],
$stat['unsubs'],
$stat['opens'],
$stat['unique_opens'],
$stat['clicks'],
$stat['unique_clicks'],
);
}
$render = array(
'info' => array(
'#theme' => 'table',
'#rows' => array(
array(
t('Username'),
$info['username'],
),
array(
t('Reputation'),
$info['reputation'],
),
array(
t('Hourly quota'),
$info['hourly_quota'],
),
array(
t('Backlog'),
$info['backlog'],
),
),
'#header' => array(
t('Attribute'),
t('Value'),
),
'#caption' => t('Active API user information.'),
),
'stats' => array(
'#theme' => 'table',
'#rows' => $rows,
'#header' => $header,
'#caption' => t("This table contains an aggregate summary of the account's sending stats."),
),
);
return $render;
}
Functions
Name | Description |
---|---|
mandrill_reports_dashboard_page | Page callback for rendering stats. |
mandrill_reports_data | Return an associative array containing raw stats. |
mandrill_reports_menu | Implements hook_menu(). |
mandrill_reports_permission | Implements hook_permission(). |
mandrill_reports_summary_page | Displays summary information for the active API user. |