106 lines
3.6 KiB
PHP
106 lines
3.6 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/site/faq/license.php
|
|
+--------------------------------------------------------------------------
|
|
| product.views.inc.php
|
|
| ========================================
|
|
| Product Views Stats
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
if(!defined('CC_INI_SET')){ die("Access Denied"); } ?>
|
|
<p class='pageTitle'><?php echo $lang['admin']['stats_product_pop'];?></p>
|
|
<?php
|
|
$rowsPerPage = 15;
|
|
|
|
if(isset($_GET['page'])){
|
|
$page = $_GET['page'];
|
|
} else {
|
|
$page = 0;
|
|
}
|
|
|
|
$db = new db();
|
|
$query = "SELECT popularity, name FROM ".$glob['dbprefix']."CubeCart_inventory ORDER BY popularity DESC";
|
|
$results = $db->select($query, $rowsPerPage, $page);
|
|
$noResults = $db->numrows($query);
|
|
$totalHits = $db->select("SELECT sum(popularity) as totalHits FROM ".$glob['dbprefix']."CubeCart_inventory");
|
|
|
|
if($results==TRUE) {
|
|
$i=0;
|
|
$chartData = array();
|
|
|
|
$keyStr = "<table width='100%' border='0' cellspacing='1' cellpadding='3' class='mainTable'>
|
|
<tr>
|
|
<td class='tdTitle' style='text-align: center;'>".$lang['admin']['stats_rank']."</td>
|
|
<td class='tdTitle'>".$lang['admin']['stats_prod_name']."</td>
|
|
<td class='tdTitle' style='text-align: center;'>".$lang['admin']['stats_views']."</td>
|
|
<td class='tdTitle' style='text-align: center;'>".sprintf($lang['admin']['stats_percent_total'],$totalHits[0]['totalHits'])."</td>
|
|
</tr>\n";
|
|
|
|
for ($i=0; $i<$noResults; $i++) {
|
|
|
|
$cellColor = cellColor($i);
|
|
|
|
$percentage = 100 * ($results[$i]['popularity'] / $totalHits[0]['totalHits']);
|
|
$percentage = number_format($percentage,2);
|
|
|
|
if ($percentage >= 1) {
|
|
|
|
$position = (($page*$rowsPerPage)+1)+$i;
|
|
$chartData[] = array($position, $percentage);
|
|
|
|
$keyStr .= "<tr>
|
|
<td class='".$cellColor." copyText' style='text-align: center;'>".$position."</td>
|
|
<td class='".$cellColor." copyText'>".$results[$i]['name']."</td>
|
|
<td class='".$cellColor." copyText' style='text-align: center;'>".$results[$i]['popularity']."</td>
|
|
<td class='".$cellColor." copyText' style='text-align: center;'>".$percentage."%</td>
|
|
</tr>\n";
|
|
}
|
|
}
|
|
|
|
$keyStr .= "</table>";
|
|
|
|
$imageNo++;
|
|
|
|
$filename = md5(CC_ROOT_DIR.$glob['license_key'].$imageNo).".png";
|
|
|
|
$graph = new PHPlot;
|
|
$graph->SetDataValues($chartData);
|
|
$graph->SetIsInline(true);
|
|
$graph->PHPlot(550,300,"cache".CC_DS.$filename);
|
|
$graph->SetPlotType("bars");
|
|
$graph->SetXLabelAngle("0");
|
|
$graph->skip_right_tick = TRUE;
|
|
$graph->SetNumXTicks(1);
|
|
$graph->SetTitle($lang['admin']['stats_product_pop']." (".(($page*$rowsPerPage)+1)." - ".(($page*$rowsPerPage) + count($chartData)).")");
|
|
$graph->SetXTitle($lang['admin']['stats_product_name_key']);
|
|
$graph->SetYTitle($lang['admin']['stats_product_views']);
|
|
$graph->DrawGraph();
|
|
|
|
|
|
echo "<img src='cache/".$filename."' />";
|
|
?>
|
|
<p class="copyText"><?php echo paginate(count($chartData), $rowsPerPage, $page, "page"); ?></p>
|
|
<?php
|
|
echo $keyStr;
|
|
|
|
} else {
|
|
echo "<p class='copyText'>".$lang['admin']['stats_sorry_no_data']."</p>";
|
|
}
|
|
?>
|