Last change
on this file since 146 was
146,
checked in by fpvanagthoven, 13 years ago
|
Merged step/displaystep class functionality, division is unnecessary.
Added some javascript to manipulate editor objects in sequencerScripts.js
|
File size:
1.3 KB
|
Rev | Line | |
---|
[142] | 1 | <?php |
---|
| 2 | require 'classes/master.php'; //should be at top of every page |
---|
| 3 | |
---|
[146] | 4 | /* if (!isset($_SESSION['user'])){ |
---|
| 5 | redirect('index.php'); |
---|
| 6 | } */ |
---|
[142] | 7 | |
---|
[146] | 8 | //var_dump($_POST); |
---|
[142] | 9 | |
---|
[146] | 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); |
---|
[142] | 14 | } |
---|
| 15 | |
---|
[146] | 16 | $sequencer->GetFromDB(); // doesn't actually currently get from db, uses session/post as a temporary alternative. |
---|
[144] | 17 | |
---|
| 18 | |
---|
[146] | 19 | //$dbi = new DatabaseInterface(); |
---|
[142] | 20 | ?> |
---|
| 21 | |
---|
| 22 | <!-- |
---|
| 23 | To change this template, choose Tools | Templates |
---|
| 24 | and open the template in the editor. |
---|
| 25 | --> |
---|
| 26 | <!DOCTYPE html> |
---|
[144] | 27 | |
---|
[142] | 28 | <html> |
---|
| 29 | <head> |
---|
| 30 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 31 | <title></title> |
---|
[146] | 32 | <?php new StyleSheet("awesome"); ?> |
---|
[142] | 33 | <script type="text/javascript" src="js/menu.js"></script> |
---|
| 34 | <script type="text/javascript" src="js/jquery.jps"></script> |
---|
[146] | 35 | <script type="text/javascript" src="js/sequencerScripts.js"></script> |
---|
[142] | 36 | </head> |
---|
| 37 | <body> |
---|
[144] | 38 | <div id="header"> |
---|
[146] | 39 | <?php new Logo(); ?> |
---|
[142] | 40 | </div> |
---|
| 41 | |
---|
| 42 | <div id="wrapper"> |
---|
| 43 | <div id="content"> |
---|
[146] | 44 | <?php $sequencer->DrawSequencer(); ?> |
---|
| 45 | <?php $toolbox = new Toolbox(); ?> |
---|
[142] | 46 | </div> |
---|
| 47 | </body> |
---|
| 48 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.