[ Index ]
 

Code source de Zen Cart E-Commerce Shopping Cart 1.3.7.1

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/admin/includes/graphs/ -> banner_yearly.php (source)

   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_yearly.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    $stats = array(array('0', '0', '0'));
  16    $banner_stats = $db->Execute("select year(banners_history_date) as year,
  17                                         sum(banners_shown) as value, sum(banners_clicked) as dvalue
  18                                  from " . TABLE_BANNERS_HISTORY . "
  19                                  where banners_id = '" . $banner_id . "' group by year");
  20  
  21    while (!$banner_stats->EOF) {
  22      $stats[] = array($banner_stats->fields['year'], (($banner_stats->fields['value']) ? $banner_stats->fields['value'] : '0'), (($banner_stats->fields['dvalue']) ? $banner_stats->fields['dvalue'] : '0'));
  23      $banner_stats->MoveNext();
  24    }
  25  
  26    $graph = new PHPlot(600, 350, 'images/graphs/banner_yearly-' . $banner_id . '.' . $banner_extension);
  27  
  28    $graph->SetFileFormat($banner_extension);
  29    $graph->SetIsInline(1);
  30    $graph->SetPrintImage(0);
  31  
  32    $graph->SetSkipBottomTick(1);
  33    $graph->SetDrawYGrid(1);
  34    $graph->SetPrecisionY(0);
  35    $graph->SetPlotType('lines');
  36  
  37    $graph->SetPlotBorderType('left');
  38    $graph->SetTitleFontSize('4');
  39    $graph->SetTitle(sprintf(TEXT_BANNERS_YEARLY_STATISTICS, $banner['banners_title']));
  40  
  41    $graph->SetBackgroundColor('white');
  42  
  43    $graph->SetVertTickPosition('plotleft');
  44    $graph->SetDataValues($stats);
  45    $graph->SetDataColors(array('blue','red'),array('blue', 'red'));
  46  
  47    $graph->DrawGraph();
  48  
  49    $graph->PrintImage();
  50  ?>


Généré le : Mon Nov 26 16:45:43 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics