summaryrefslogtreecommitdiffstats
path: root/codebase/chart_connector.php
diff options
context:
space:
mode:
authorMaksim <max@dhtmlx.com>2011-07-18 18:21:10 +0300
committerMaksim <max@dhtmlx.com>2011-07-18 18:21:10 +0300
commit5c2afae6cf595c981155ac68501ac2d1af77db54 (patch)
treeb07de6379fb3eb540df732a57061cafd05288599 /codebase/chart_connector.php
downloadconnector-php-5c2afae6cf595c981155ac68501ac2d1af77db54.zip
connector-php-5c2afae6cf595c981155ac68501ac2d1af77db54.tar.gz
connector-php-5c2afae6cf595c981155ac68501ac2d1af77db54.tar.bz2
* import of php connector v1.2
Diffstat (limited to 'codebase/chart_connector.php')
-rw-r--r--codebase/chart_connector.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/codebase/chart_connector.php b/codebase/chart_connector.php
new file mode 100644
index 0000000..247d1e6
--- /dev/null
+++ b/codebase/chart_connector.php
@@ -0,0 +1,18 @@
+<?php
+/*
+ @author dhtmlx.com
+ @license GPL, see license.txt
+*/
+
+ require_once("dataview_connector.php");
+
+
+/*! Connector class for DataView
+**/
+class ChartConnector extends DataViewConnector{
+ public function __construct($res,$type=false,$item_type=false,$data_type=false){
+ parent::__construct($res,$type,$item_type,$data_type);
+ }
+}
+
+?> \ No newline at end of file