[ Index ] |
|
Code source de Zen Cart E-Commerce Shopping Cart 1.3.7.1 |
1 <?php 2 /** 3 * @package admin 4 * @copyright Copyright 2003-2006 Zen Cart Development Team 5 * @copyright Portions Copyright 2003 osCommerce 6 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 7 * @version $Id: banner_daily.php 3001 2006-02-09 21:45:06Z wilt $ 8 */ 9 if (!defined('IS_ADMIN_FLAG')) { 10 die('Illegal Access'); 11 } 12 13 include(DIR_WS_CLASSES . 'phplot.php'); 14 15 $year = (($_GET['year']) ? $_GET['year'] : date('Y')); 16 $month = (($_GET['month']) ? $_GET['month'] : date('n')); 17 18 $days = (date('t', mktime(0,0,0,$month))+1); 19 $stats = array(); 20 for ($i=1; $i<$days; $i++) { 21 $stats[] = array($i, '0', '0'); 22 } 23 24 $banner_stats = $db->Execute("select dayofmonth(banners_history_date) as banner_day, banners_shown as value, banners_clicked as dvalue from " . TABLE_BANNERS_HISTORY . " where banners_id = '" . $banner_id . "' and month(banners_history_date) = '" . $month . "' and year(banners_history_date) = '" . $year . "'"); 25 while (!$banner_stats->EOF) { 26 $stats[($banner_stats->fields['banner_day']-1)] = array($banner_stats->fields['banner_day'], (($banner_stats->fields['value']) ? $banner_stats->fields['value'] : '0'), (($banner_stats->fields['dvalue']) ? $banner_stats->fields['dvalue'] : '0')); 27 $banner_stats->MoveNext(); 28 } 29 30 $graph = new PHPlot(600, 350, 'images/graphs/banner_daily-' . $banner_id . '.' . $banner_extension); 31 32 $graph->SetFileFormat($banner_extension); 33 $graph->SetIsInline(1); 34 $graph->SetPrintImage(0); 35 36 $graph->SetSkipBottomTick(1); 37 $graph->SetDrawYGrid(1); 38 $graph->SetPrecisionY(0); 39 $graph->SetPlotType('lines'); 40 41 $graph->SetPlotBorderType('left'); 42 $graph->SetTitleFontSize('4'); 43 $graph->SetTitle(sprintf(TEXT_BANNERS_DAILY_STATISTICS, $banner->fields['banners_title'], strftime('%B', mktime(0,0,0,$month)), $year)); 44 45 $graph->SetBackgroundColor('white'); 46 47 $graph->SetVertTickPosition('plotleft'); 48 $graph->SetDataValues($stats); 49 $graph->SetDataColors(array('blue','red'),array('blue', 'red')); 50 51 $graph->DrawGraph(); 52 53 $graph->PrintImage(); 54 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 16:45:43 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |