diff options
Diffstat (limited to 'samples/scheduler')
-rw-r--r-- | samples/scheduler/01_basic_init.html | 52 | ||||
-rw-r--r-- | samples/scheduler/01_basic_init_connector.php | 13 | ||||
-rw-r--r-- | samples/scheduler/02_dynamic_loading.html | 54 | ||||
-rw-r--r-- | samples/scheduler/02_dynamic_loading_connector.php | 13 | ||||
-rw-r--r-- | samples/scheduler/03_connector_options.html | 57 | ||||
-rw-r--r-- | samples/scheduler/03_connector_options.php | 16 | ||||
-rw-r--r-- | samples/scheduler/04_recurring_events.html | 46 | ||||
-rw-r--r-- | samples/scheduler/04_recurring_events_connector.php | 40 | ||||
-rw-r--r-- | samples/scheduler/05_json.html | 52 | ||||
-rw-r--r-- | samples/scheduler/05_json_connector.php | 12 | ||||
-rw-r--r-- | samples/scheduler/06_json_connector_options.html | 57 | ||||
-rw-r--r-- | samples/scheduler/06_json_connector_options.php | 15 | ||||
-rw-r--r-- | samples/scheduler/07_array_connector.html | 54 | ||||
-rw-r--r-- | samples/scheduler/07_array_connector.php | 12 | ||||
-rw-r--r-- | samples/scheduler/index.html | 28 |
15 files changed, 0 insertions, 521 deletions
diff --git a/samples/scheduler/01_basic_init.html b/samples/scheduler/01_basic_init.html deleted file mode 100644 index 06fc578..0000000 --- a/samples/scheduler/01_basic_init.html +++ /dev/null @@ -1,52 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.config.prevent_cache = true; - scheduler.config.lightbox.sections=[ - {name:"description", height:130, map_to:"text", type:"textarea" , focus:true}, - {name:"location", height:43, type:"textarea", map_to:"details" }, - {name:"time", height:72, type:"time", map_to:"auto"} - ] - scheduler.config.first_hour=4; - scheduler.locale.labels.section_location="Location"; - scheduler.config.details_on_create=true; - scheduler.config.details_on_dblclick=true; - scheduler.init('scheduler_here',new Date(2009,10,1),"month"); - scheduler.load("01_basic_init_connector.php?uid="+scheduler.uid()); - var dp = new dataProcessor("01_basic_init_connector.php"); - dp.init(scheduler); - } -</script> -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/01_basic_init_connector.php b/samples/scheduler/01_basic_init_connector.php deleted file mode 100644 index 97442fa..0000000 --- a/samples/scheduler/01_basic_init_connector.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - - include ('../config.php'); - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $scheduler = new schedulerConnector($res, "PDO"); - //$scheduler->enable_log("log.txt",true); - $scheduler->render_table("events","event_id","start_date,end_date,event_name,details"); -?>
\ No newline at end of file diff --git a/samples/scheduler/02_dynamic_loading.html b/samples/scheduler/02_dynamic_loading.html deleted file mode 100644 index aa043a2..0000000 --- a/samples/scheduler/02_dynamic_loading.html +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.config.prevent_cache = true; - scheduler.config.lightbox.sections=[ - {name:"description", height:130, map_to:"text", type:"textarea" , focus:true}, - {name:"location", height:43, type:"textarea", map_to:"details" }, - {name:"time", height:72, type:"time", map_to:"auto"} - ] - scheduler.config.first_hour=4; - scheduler.locale.labels.section_location="Location"; - scheduler.config.details_on_create=true; - scheduler.config.details_on_dblclick=true; - - scheduler.init('scheduler_here',new Date(2009,10,1),"day"); - scheduler.setLoadMode("day"); - scheduler.load("02_dynamic_loading_connector.php?uid="+scheduler.uid()); - var dp = new dataProcessor("02_dynamic_loading_connector.php"); - dp.init(scheduler); - } -</script> -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/02_dynamic_loading_connector.php b/samples/scheduler/02_dynamic_loading_connector.php deleted file mode 100644 index 97442fa..0000000 --- a/samples/scheduler/02_dynamic_loading_connector.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - - include ('../config.php'); - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $scheduler = new schedulerConnector($res, "PDO"); - //$scheduler->enable_log("log.txt",true); - $scheduler->render_table("events","event_id","start_date,end_date,event_name,details"); -?>
\ No newline at end of file diff --git a/samples/scheduler/03_connector_options.html b/samples/scheduler/03_connector_options.html deleted file mode 100644 index 411551c..0000000 --- a/samples/scheduler/03_connector_options.html +++ /dev/null @@ -1,57 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> - -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> - -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.multi_day = true; - scheduler.config.prevent_cache = true; - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.init('scheduler_here',new Date(2010,2,1),"month"); - - - scheduler.locale.labels.section_type = "Type"; - scheduler.config.lightbox.sections = [ - {name:"description", height:200, map_to:"text", type:"textarea" , focus:true}, - {name:"type", height:21, map_to:"type", type:"select", - options:scheduler.serverList("type")}, - {name:"time", height:72, type:"time", map_to:"auto"} - ]; - scheduler.load("03_connector_options.php"); - - var dp = new dataProcessor("03_connector_options.php"); - dp.init(scheduler); - } -</script> - -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/03_connector_options.php b/samples/scheduler/03_connector_options.php deleted file mode 100644 index 29d5445..0000000 --- a/samples/scheduler/03_connector_options.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - include ('../config.php'); - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $list = new OptionsConnector($res, "PDO"); - $list->render_table("types","typeid","typeid(value),name(label)"); - - $scheduler = new schedulerConnector($res, "PDO"); -// $scheduler->enable_log("log.txt",true); - - $scheduler->set_options("type", $list); - $scheduler->render_table("tevents","event_id","start_date,end_date,event_name,type"); -?>
\ No newline at end of file diff --git a/samples/scheduler/04_recurring_events.html b/samples/scheduler/04_recurring_events.html deleted file mode 100644 index bc000cb..0000000 --- a/samples/scheduler/04_recurring_events.html +++ /dev/null @@ -1,46 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <script src="../dhtmlx/dhtmlxscheduler_recurring.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.config.details_on_create=true; - scheduler.config.details_on_dblclick=true; - scheduler.init('scheduler_here',null,"month"); - scheduler.load("04_recurring_events_connector.php?uid="+scheduler.uid()); - - var dp = new dataProcessor("04_recurring_events_connector.php"); - dp.init(scheduler); - } -</script> -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/04_recurring_events_connector.php b/samples/scheduler/04_recurring_events_connector.php deleted file mode 100644 index c370cff..0000000 --- a/samples/scheduler/04_recurring_events_connector.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - include ('../config.php'); - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - include ('../../codebase/db_sqlsrv.php'); - - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - - function delete_related($action){ - global $scheduler; - - $status = $action->get_status(); - $type =$action->get_value("rec_type"); - $pid =$action->get_value("event_pid"); - //when serie changed or deleted we need to remove all linked events - if (($status == "deleted" || $status == "updated") && $type!=""){ - $scheduler->sql->query("DELETE FROM events_rec WHERE event_pid='".$scheduler->sql->escape($action->get_id())."'"); - } - if ($status == "deleted" && $pid !=0){ - $scheduler->sql->query("UPDATE events_rec SET rec_type='none' WHERE event_id='".$scheduler->sql->escape($action->get_id())."'"); - $action->success(); - } - - } - function insert_related($action){ - $status = $action->get_status(); - $type =$action->get_value("rec_type"); - - if ($status == "inserted" && $type=="none") - $action->set_status("deleted"); - } - - $scheduler = new schedulerConnector($res, "PDO"); - //$scheduler->enable_log("log.txt",true); - $scheduler->event->attach("beforeProcessing","delete_related"); - $scheduler->event->attach("afterProcessing","insert_related"); - $scheduler->render_table("events_rec","event_id","start_date,end_date,text,rec_type,event_pid,event_length"); -?>
\ No newline at end of file diff --git a/samples/scheduler/05_json.html b/samples/scheduler/05_json.html deleted file mode 100644 index 388c038..0000000 --- a/samples/scheduler/05_json.html +++ /dev/null @@ -1,52 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.config.prevent_cache = true; - scheduler.config.lightbox.sections=[ - {name:"description", height:130, map_to:"text", type:"textarea" , focus:true}, - {name:"location", height:43, type:"textarea", map_to:"details" }, - {name:"time", height:72, type:"time", map_to:"auto"} - ] - scheduler.config.first_hour=4; - scheduler.locale.labels.section_location="Location"; - scheduler.config.details_on_create=true; - scheduler.config.details_on_dblclick=true; - scheduler.init('scheduler_here',new Date(2009,10,1),"month"); - scheduler.load("05_json_connector.php?uid="+scheduler.uid(), "json"); - var dp = new dataProcessor("05_json_connector.php"); - dp.init(scheduler); - } -</script> -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/05_json_connector.php b/samples/scheduler/05_json_connector.php deleted file mode 100644 index ae36cac..0000000 --- a/samples/scheduler/05_json_connector.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - - include ('../config.php'); - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $scheduler = new JSONSchedulerConnector($res, "PDO"); - $scheduler->render_table("events","event_id","start_date,end_date,event_name,details"); -?>
\ No newline at end of file diff --git a/samples/scheduler/06_json_connector_options.html b/samples/scheduler/06_json_connector_options.html deleted file mode 100644 index d795a3b..0000000 --- a/samples/scheduler/06_json_connector_options.html +++ /dev/null @@ -1,57 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> - -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> - -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.multi_day = true; - scheduler.config.prevent_cache = true; - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.init('scheduler_here',new Date(2010,2,1),"month"); - - - scheduler.locale.labels.section_type = "Type"; - scheduler.config.lightbox.sections = [ - {name:"description", height:200, map_to:"text", type:"textarea" , focus:true}, - {name:"type", height:21, map_to:"type", type:"select", - options:scheduler.serverList("type")}, - {name:"time", height:72, type:"time", map_to:"auto"} - ]; - scheduler.load("06_json_connector_options.php", "json"); - - var dp = new dataProcessor("06_json_connector_options.php"); - dp.init(scheduler); - } -</script> - -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/06_json_connector_options.php b/samples/scheduler/06_json_connector_options.php deleted file mode 100644 index 613c6fe..0000000 --- a/samples/scheduler/06_json_connector_options.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - include ('../../codebase/db_pdo.php'); - include ('../../codebase/scheduler_connector.php'); - include ('../config.php'); - $res= new PDO($mysql_server,$mysql_user,$mysql_pass); - - - $list = new JSONOptionsConnector($res, "PDO"); - $list->render_table("types","typeid","typeid(value),name(label)"); - - $scheduler = new JSONSchedulerConnector($res, "PDO"); - - $scheduler->set_options("type", $list); - $scheduler->render_table("tevents","event_id","start_date,end_date,event_name,type"); -?>
\ No newline at end of file diff --git a/samples/scheduler/07_array_connector.html b/samples/scheduler/07_array_connector.html deleted file mode 100644 index c4c2183..0000000 --- a/samples/scheduler/07_array_connector.html +++ /dev/null @@ -1,54 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> - <title></title> -</head> - <script src="../dhtmlx/dhtmlxscheduler.js" type="text/javascript" charset="utf-8"></script> - <link rel="stylesheet" href="../dhtmlx/dhtmlxscheduler.css" type="text/css" title="no title" charset="utf-8"> - -<style type="text/css" media="screen"> - html, body{ - margin:0px; - padding:0px; - height:100%; - overflow:hidden; - } -</style> - -<script type="text/javascript" charset="utf-8"> - function init() { - scheduler.config.multi_day = true; - scheduler.config.prevent_cache = true; - scheduler.config.xml_date="%Y-%m-%d %H:%i"; - scheduler.init('scheduler_here',new Date(2012,4,1),"month"); - - - scheduler.locale.labels.section_type = "Type"; - scheduler.config.lightbox.sections = [ - {name:"description", height:200, map_to:"text", type:"textarea" , focus:true}, - {name:"type", height:21, map_to:"type", type:"select", - options:scheduler.serverList("type")}, - {name:"time", height:72, type:"time", map_to:"auto"} - ]; - scheduler.load("07_array_connector.php"); - } -</script> - -<body onload="init();"> - <div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> - <div class="dhx_cal_navline"> - <div class="dhx_cal_prev_button"> </div> - <div class="dhx_cal_next_button"> </div> - <div class="dhx_cal_today_button"></div> - <div class="dhx_cal_date"></div> - <div class="dhx_cal_tab" name="day_tab" style="right:204px;"></div> - <div class="dhx_cal_tab" name="week_tab" style="right:140px;"></div> - <div class="dhx_cal_tab" name="month_tab" style="right:76px;"></div> - </div> - <div class="dhx_cal_header"> - </div> - <div class="dhx_cal_data"> - </div> - </div> -</body>
\ No newline at end of file diff --git a/samples/scheduler/07_array_connector.php b/samples/scheduler/07_array_connector.php deleted file mode 100644 index dd65e1b..0000000 --- a/samples/scheduler/07_array_connector.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - - include ('../../codebase/scheduler_connector.php'); - - $data = array( - array("event_id" => 1, "start_date" => "2012-05-24 00:00", "end_date" => "2012-05-25 00:00", "event_name" => "creation time"), - array("event_id" => 2, "start_date" => "2010-02-16", "end_date" => "2084-06-08", "event_name" => "second part") - ); - - $scheduler = new SchedulerConnector(); - $scheduler->render_array($data,"event_id","start_date,end_date,event_name"); -?>
\ No newline at end of file diff --git a/samples/scheduler/index.html b/samples/scheduler/index.html deleted file mode 100644 index c480dc6..0000000 --- a/samples/scheduler/index.html +++ /dev/null @@ -1,28 +0,0 @@ -<html> - <head></head> - <style type="text/css" media="screen"> - *{ - font-family:Tahoma; - } - div,li{ - font-size:10pt; - } - div{ - padding-bottom:20px; - } - li{ - padding-left:50px; - padding-bottom:10px; - } - </style> - <body> - <h2>dhtmlxConnector for PHP :: Samples</h2> - - <li><a href="01_basic_init.html">Basic init</a></li> - <li><a href="02_dynamic_loading.html">Dynamic loading</a></li> - <li><a href="03_connector_options.html">Connector options</a></li> - <li><a href="04_recurring_events.html">Recurring events</a></li> - <li><a href="05_json.html">JSON data loading</a></li> - </body> -</html> - |