Viewing file: zonehistory.plugin.php (4.47 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php // $Revision: 1.1 $
/************************************************************************/
/* phpAdsNew 2 - Campaign Overview Plugin 1.0 */
/* ========================================== */
/* */
/* Copyright (c) 2001 by Niels Leenheer <niels@creatype.nl> */
/* http://sourceforge.net/projects/phpadsnew */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
// Public name of the plugin info function
$plugin_info_function = "Plugin_ZonehistoryInfo";
// Public info function
function Plugin_ZonehistoryInfo()
{
global $strZoneHistory, $strZone;
$plugininfo = array (
"plugin-name" => $strZoneHistory,
"plugin-description" => "Generate an overview of the history of the selected zone.
The report is exported as CSV for use in a spreadsheet.",
"plugin-author" => "Niels Leenheer",
"plugin-export" => "csv",
"plugin-authorize" => phpAds_Admin+phpAds_Affiliate,
"plugin-execute" => "Plugin_ZonehistoryExecute",
"plugin-import" => array (
"campaignid" => array (
"title" => $strZone,
"type" => "zoneid-dropdown" ),
"delimiter" => array (
"title" => "Delimiter",
"type" => "edit",
"size" => 1,
"default" => "," ) )
);
return ($plugininfo);
}
/*********************************************************/
/* Private plugin function */
/*********************************************************/
function Plugin_ZonehistoryExecute($zoneid, $delimiter=",")
{
global $phpAds_config, $date_format;
global $strZone, $strTotal, $strDay, $strViews, $strClicks, $strCTRShort;
header ("Content-type: application/csv\nContent-Disposition: \"inline; filename=zonehistory.csv\"");
if ($phpAds_config['compact_stats'])
{
$res_query = "
SELECT
DATE_FORMAT(day, '".$date_format."') as day,
SUM(views) AS adviews,
SUM(clicks) AS adclicks
FROM
".$phpAds_config['tbl_adstats']."
WHERE
zoneid = ".$zoneid."
GROUP BY
day
";
$res_banners = phpAds_dbQuery($res_query) or phpAds_sqlDie();
while ($row_banners = phpAds_dbFetchArray($res_banners))
{
$stats [$row_banners['day']]['views'] = $row_banners['adviews'];
$stats [$row_banners['day']]['clicks'] = $row_banners['adclicks'];
}
}
else
{
$res_query = "
SELECT
DATE_FORMAT(t_stamp, '".$date_format."') as day,
count(bannerid) as adviews
FROM
".$phpAds_config['tbl_adviews']."
WHERE
zoneid = ".$zoneid."
GROUP BY
day
";
$res_banners = phpAds_dbQuery($res_query) or phpAds_sqlDie();
while ($row_banners = phpAds_dbFetchArray($res_banners))
{
$stats [$row_banners['day']]['views'] = $row_banners['adviews'];
$stats [$row_banners['day']]['clicks'] = 0;
}
$res_query = "
SELECT
DATE_FORMAT(t_stamp, '".$date_format."') as day,
count(bannerid) as adclicks
FROM
".$phpAds_config['tbl_adclicks']."
WHERE
zoneid = ".$zoneid."
GROUP BY
day
";
$res_banners = phpAds_dbQuery($res_query) or phpAds_sqlDie();
while ($row_banners = phpAds_dbFetchArray($res_banners))
{
$stats [$row_banners['day']]['clicks'] = $row_banners['adclicks'];
}
}
echo $strZone.": ".phpAds_getZoneName ($zoneid)."\n\n";
echo $strDay.$delimiter.$strViews.$delimiter.$strClicks.$delimiter.$strCTRShort."\n";
$totalclicks = 0;
$totalviews = 0;
if (isset($stats) && is_array($stats))
{
for (reset($stats);$key=key($stats);next($stats))
{
$row = array();
$row[] = $key;
$row[] = $stats[$key]['views'];
$row[] = $stats[$key]['clicks'];
$row[] = phpAds_buildCTR ($stats[$key]['views'], $stats[$key]['clicks']);
echo implode ($delimiter, $row)."\n";
$totalclicks += $stats[$key]['clicks'];
$totalviews += $stats[$key]['views'];
}
}
echo "\n";
echo $strTotal.$delimiter.$totalviews.$delimiter.$totalclicks.$delimiter.phpAds_buildCTR ($totalviews, $totalclicks)."\n";
}
?>
|