summaryrefslogtreecommitdiffstats
path: root/samples/gantt/01_basic_init_connector.php
blob: d9d0e42c292090bccb8ca19fb7351f2303cc714e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

	include ('../config.php');
	include ('../../codebase/gantt_connector.php');

    $res= new PDO($mysql_server,$mysql_user,$mysql_pass); 
     

	$gantt = new JSONGanttConnector($res, "PDO");

	$gantt->mix("open", 1);

	$gantt->render_links("gantt_links", "id", "source,target,type");
	$gantt->render_table("gantt_tasks","id","start_date,duration,text,progress,parent","");

?>