Moving dhtmlxGantt library to 'libraries' folder
This commit is contained in:
parent
dbcdde741c
commit
5e16eb66dd
162 changed files with 6 additions and 5 deletions
18
libraries/dhtmlxgantt/connector/chart_connector.php
Normal file
18
libraries/dhtmlxgantt/connector/chart_connector.php
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in a new issue