| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|---|
| 2 | <html>
|
|---|
| 3 | <head>
|
|---|
| 4 | <link type="text/css" rel="stylesheet" href="Module/src/css/jscal2.css" />
|
|---|
| 5 | <link type="text/css" rel="stylesheet" href="Module/src/css/border-radius.css" />
|
|---|
| 6 |
|
|---|
| 7 | <link id="skin-win2k" title="Win 2K" type="text/css" rel="alternate stylesheet" href="Module/src/css/win2k/win2k.css" />
|
|---|
| 8 |
|
|---|
| 9 | <script src="js/highcharts.js"></script>
|
|---|
| 10 | <script src="js/exporting.js"></script>
|
|---|
| 11 |
|
|---|
| 12 | <script src="Module/src/js/jscal2.js"></script>
|
|---|
| 13 | <script src="Module/src/js/unicode-letter.js"></script>
|
|---|
| 14 | <script src="js/chart.js"></script>
|
|---|
| 15 | <script src="js/Graph.js"></script>
|
|---|
| 16 | <script src="Module/src/js/lang/en.js"></script>
|
|---|
| 17 | <style type="text/css">
|
|---|
| 18 | .highlight { color: #0f0 !important; font-weight: bold; }
|
|---|
| 19 | </style>
|
|---|
| 20 |
|
|---|
| 21 | </head>
|
|---|
| 22 | <body style="background-color: #fff">
|
|---|
| 23 |
|
|---|
| 24 | <table>
|
|---|
| 25 | <tr>
|
|---|
| 26 | <td valign="top" style="width: 30em;">
|
|---|
| 27 | <div id="cont"></div>
|
|---|
| 28 | <script type="text/javascript">
|
|---|
| 29 | var DATE_INFO = {
|
|---|
| 30 | <?php
|
|---|
| 31 | $sqlSched=mysql_query("SELECT*FROM schedule");
|
|---|
| 32 | $SchedCnt=mysql_num_rows($sqlSched);
|
|---|
| 33 | $src=1;
|
|---|
| 34 | while($rowSched=mysql_fetch_array($sqlSched))
|
|---|
| 35 | {
|
|---|
| 36 | $timestamp=strtotime($rowSched['fStart']);
|
|---|
| 37 | if($SchedCnt==$src)
|
|---|
| 38 | {
|
|---|
| 39 | echo date("Ymd",$timestamp);?>:{klass: "highlight"}<?php
|
|---|
| 40 | }
|
|---|
| 41 | else
|
|---|
| 42 | {
|
|---|
| 43 | echo date("Ymd",$timestamp);?>:{klass: "highlight"},<?php
|
|---|
| 44 | }
|
|---|
| 45 | $src++;
|
|---|
| 46 | ?>
|
|---|
| 47 |
|
|---|
| 48 | <?php
|
|---|
| 49 | }
|
|---|
| 50 | ?>
|
|---|
| 51 | };
|
|---|
| 52 |
|
|---|
| 53 | function getDateInfo(date, wantsClassName) {
|
|---|
| 54 | var as_number = Calendar.dateToInt(date);
|
|---|
| 55 | return DATE_INFO[as_number];
|
|---|
| 56 | };
|
|---|
| 57 | var CAL = Calendar.setup({
|
|---|
| 58 | cont: "cont",
|
|---|
| 59 | // weekNumbers: true,
|
|---|
| 60 | selectionType: Calendar.SEL_MULTIPLE,
|
|---|
| 61 | showTime: 24,
|
|---|
| 62 | //fdow : 1,
|
|---|
| 63 | dateInfo:getDateInfo
|
|---|
| 64 | // titleFormat: "%B %Y"
|
|---|
| 65 | })
|
|---|
| 66 | </script>
|
|---|
| 67 | </td>
|
|---|
| 68 |
|
|---|
| 69 | <tr>
|
|---|
| 70 | <td>
|
|---|
| 71 | <script type="text/javascript">
|
|---|
| 72 | $(document).ready(function(){
|
|---|
| 73 | Graph();
|
|---|
| 74 | });
|
|---|
| 75 | </script>
|
|---|
| 76 | <script type="text/javascript">
|
|---|
| 77 | var day;
|
|---|
| 78 | var year;
|
|---|
| 79 | var month;
|
|---|
| 80 | CAL.addEventListener("onSelect", function(){
|
|---|
| 81 | day =this.selection.print("%d").join("\n");
|
|---|
| 82 | month =this.selection.print("%m").join("\n");
|
|---|
| 83 | year =this.selection.print("%Y").join("\n");
|
|---|
| 84 | GetData();
|
|---|
| 85 |
|
|---|
| 86 | $('#Scheduling').load('Module/Scheduling.php?days='+year+'-'+month+'-'+day);
|
|---|
| 87 | //$.get("function/function.php", {day:year+'-'+month+'-'+day});
|
|---|
| 88 | //$.get("function/SplitDelete.php", {days:year+'-'+month+'-'+day});
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 | //GetDate();
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 | });
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 | </script>
|
|---|
| 100 | </td>
|
|---|
| 101 | </tr>
|
|---|
| 102 |
|
|---|
| 103 | </table>
|
|---|
| 104 | </td>
|
|---|
| 105 | </tr>
|
|---|
| 106 | </table>
|
|---|
| 107 |
|
|---|
| 108 | </body>
|
|---|
| 109 | </html>
|
|---|
| 110 |
|
|---|
| 111 |
|
|---|