Пример #1
0
 function __construct($type = null)
 {
     if ($type != null) {
         parent::__construct($type);
     } else {
         $this->name = 'graphgooglechart';
         $this->tab = 'Stats Engines';
         $this->version = 1.0;
         Module::__construct();
         $this->displayName = $this->l('Google Chart');
         $this->description = $this->l('The Google Chart API lets you dynamically generate charts.');
     }
 }
Пример #2
0
 function __construct($type = null)
 {
     if ($type !== null) {
         return parent::__construct($type);
     }
     $this->name = 'graphnvd3';
     $this->tab = 'administration';
     $this->version = '1.5.0';
     $this->author = 'PrestaShop';
     $this->need_instance = 0;
     Module::__construct();
     $this->displayName = $this->l('NVD3 Charts');
     $this->description = '';
 }
Пример #3
0
 function __construct($type = null)
 {
     if ($type != null) {
         $this->_xml = '<chart>';
         parent::__construct($type);
     } else {
         $this->name = 'graphxmlswfcharts';
         $this->tab = 'Stats Engines';
         $this->version = 1.0;
         Module::__construct();
         $this->displayName = $this->l('XML/SWF Charts');
         $this->description = $this->l('XML/SWF Charts is a simple, yet powerful tool using Adobe Flash to create attractive web charts and graphs from dynamic data.');
     }
 }
 function __construct($type = null)
 {
     if ($type != null) {
         parent::__construct($type);
     } else {
         $this->name = 'graphgooglechart';
         $this->tab = 'administration';
         $this->version = 1.0;
         $this->author = 'PrestaShop';
         Module::__construct();
         $this->displayName = $this->l('Google Chart');
         $this->description = $this->l('The Google Chart API lets you dynamically generate charts.');
     }
 }
Пример #5
0
 function __construct($type = null)
 {
     if ($type !== null) {
         return parent::__construct($type);
     }
     $this->name = 'graphnvd3';
     $this->tab = 'administration';
     $this->version = 1.1;
     $this->author = 'PrestaShop';
     $this->need_instance = 0;
     Module::__construct();
     $this->displayName = $this->l('NVD3 Charts');
     $this->description = '';
     $this->ps_versions_compliancy = array('min' => '1.5.6.1', 'max' => _PS_VERSION_);
 }
Пример #6
0
 function __construct($type = null)
 {
     if ($type != null) {
         require_once dirname(__FILE__) . '/artichow/Graph.class.php';
         $this->_graph = new Graph();
         $this->_graph->setAntiAliasing(function_exists('imageantialias'));
         parent::__construct($type);
     } else {
         $this->name = 'graphartichow';
         $this->tab = 'Stats Engines';
         $this->version = 1.0;
         Module::__construct();
         $this->displayName = $this->l('Artichow');
         $this->description = $this->l('Artichow is a library which enable the display of simple picture-based graphs using PHP and GD.');
     }
 }
 function __construct($type = null)
 {
     if ($type != null) {
         $this->_xml = '<chart>';
         parent::__construct($type);
     } else {
         $this->name = 'graphxmlswfcharts';
         $this->tab = 'administration';
         $this->version = 1.0;
         $this->author = 'PrestaShop';
         $this->need_instance = 0;
         Module::__construct();
         $this->displayName = $this->l('XML/SWF Charts');
         $this->description = $this->l('XML/SWF Charts are simple, yet powerful tools using Adobe Flash to create attractive web charts and graphs from dynamic data.');
     }
 }
Пример #8
0
 function __construct($type = null)
 {
     if ($type != null) {
         $this->_xml = '<vc:Chart xmlns:vc="clr-namespace:Visifire.Charts;assembly=Visifire.Charts" BorderThickness="0" AnimationEnabled="True" AnimationType="Type5"';
         if ($type == 'pie' || $type == 'line') {
             $this->_xml .= ' Theme="Theme1" View3D="True"';
         } else {
             $this->_xml .= ' Theme="Theme2" ColorSet="Visifire2" UniqueColors="True"';
         }
         $this->_xml .= '>';
         parent::__construct($type);
     } else {
         $this->name = 'graphvisifire';
         $this->tab = 'Stats Engines';
         $this->version = 1.0;
         Module::__construct();
         $this->displayName = $this->l('Visifire');
         $this->description = $this->l('Visifire is a set of open source data visualization components - powered by Microsoft Silverlight 2 beta 2.');
     }
 }