Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | * To change this template, choose Tools | Templates |
---|
4 | * and open the template in the editor. |
---|
5 | */ |
---|
6 | |
---|
7 | require "classes/master.php"; |
---|
8 | |
---|
9 | $dbDataSelectionWidget = new dbDataSelectionWidget(); |
---|
10 | |
---|
11 | $data = JSON_decode($_POST['selectedData']); |
---|
12 | ?> |
---|
13 | |
---|
14 | <!DOCTYPE html> |
---|
15 | <html> |
---|
16 | <head> |
---|
17 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
18 | |
---|
19 | <title> |
---|
20 | Dashboard Graph Selection |
---|
21 | </title> |
---|
22 | <?php new Stylesheet("visualEditors"); ?> |
---|
23 | |
---|
24 | </head> |
---|
25 | |
---|
26 | <body> |
---|
27 | <div id="header"> |
---|
28 | <?php new Logo(); ?> |
---|
29 | </div> |
---|
30 | |
---|
31 | <div id="content"> |
---|
32 | <div id="wrapper"> |
---|
33 | |
---|
34 | <div id="leftColumn"> |
---|
35 | |
---|
36 | <div class="largeFrame C" id="dbDataSelector"> |
---|
37 | <div class="content"> |
---|
38 | |
---|
39 | <div class="largeTitle">Selected data</div> |
---|
40 | <div class="content" style="width: 300px; height: 500px; "> |
---|
41 | <?php |
---|
42 | print_r($data); |
---|
43 | ?> |
---|
44 | </div> |
---|
45 | |
---|
46 | </div> |
---|
47 | </div> |
---|
48 | |
---|
49 | <div id="rightColumn"> |
---|
50 | <div class="largeFrame Cv" style="width: 600px; height: 400px;"> |
---|
51 | <div class="largeTitle">Graph selection</div> |
---|
52 | <div class="content"> |
---|
53 | <img src="images/icons/nyan.gif" width="595" height="370"></img> |
---|
54 | </div> |
---|
55 | |
---|
56 | </div> |
---|
57 | </div> |
---|
58 | |
---|
59 | |
---|
60 | <div class="largeFrame Cu" id="dbInfoPanel" style="width: 930px;"> |
---|
61 | <div class='largeTitle'>Info panel</div> |
---|
62 | <div class="content" id="dbInfoPanelContent" style="height: 100px;"> |
---|
63 | |
---|
64 | </div> |
---|
65 | </div> |
---|
66 | </div> |
---|
67 | |
---|
68 | |
---|
69 | </body> |
---|
70 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.