Line | |
---|
1 | <?php |
---|
2 | require 'classes/master.php'; //should be at top of every page |
---|
3 | |
---|
4 | /* if (!isset($_SESSION['user'])){ |
---|
5 | redirect('index.php'); |
---|
6 | } */ |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | if (isset($_SESSION['currentPipeline'])) { |
---|
11 | $sequencer = new PipelineSequencer($_SESSION['currentPipeline'], "Test Pipeline #1", 1); |
---|
12 | } else { |
---|
13 | $sequencer = new PipelineSequencer(null, "Test Pipeline #1", 1); |
---|
14 | } |
---|
15 | |
---|
16 | $sequencer->HandlePost(); // doesn't actually currently get from db, uses session/post as a temporary alternative. |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | ?> |
---|
21 | |
---|
22 | <!-- |
---|
23 | To change this template, choose Tools | Templates |
---|
24 | and open the template in the editor. |
---|
25 | --> |
---|
26 | <!DOCTYPE html> |
---|
27 | |
---|
28 | <html> |
---|
29 | <head> |
---|
30 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
31 | <title></title> |
---|
32 | <?php new StyleSheet("awesome"); ?> |
---|
33 | <script type="text/javascript" src="js/menu.js"></script> |
---|
34 | <script type="text/javascript" src="js/jquery.jps"></script> |
---|
35 | <script type="text/javascript" src="js/sequencerScripts.js"></script> |
---|
36 | </head> |
---|
37 | <body> |
---|
38 | <div id="header"> |
---|
39 | <?php new Logo(); ?> |
---|
40 | </div> |
---|
41 | |
---|
42 | <div id="wrapper"> |
---|
43 | <div id="content"> |
---|
44 | <?php $sequencer->init(); ?> |
---|
45 | <?php $toolbox = new Toolbox(); ?> |
---|
46 | </div> |
---|
47 | </body> |
---|
48 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.