Last change
on this file since 166 was
163,
checked in by fpvanagthoven, 13 years ago
|
- Basically alles gefixt om te werken met een local copy van de session, opgeslagen in $_SESSIONlocalSessionCopy?.
- Flag $_SESSIONupdateNeeded? toegevoegd om aan te geven wanneer er een update uit de database nodig is in plaats van gewoon verder werken met de local copy.
- '123'/'456' placeholder routine weggehaald uit returnStep.php
- CreateObject? doet nog niets, maar dat komt volgende week! (AJAX-aangestuurd object creation, met als doel: pipeline editing zonder constante page refreshes).
|
File size:
932 bytes
|
Rev | Line | |
---|
[142] | 1 | <?php |
---|
| 2 | require 'classes/master.php'; //should be at top of every page |
---|
| 3 | |
---|
[151] | 4 | if (!isset($_SESSION['username'])) { |
---|
| 5 | redirect('index.php'); |
---|
| 6 | } |
---|
[142] | 7 | |
---|
[152] | 8 | $sequencer = new PipelineSequencer(); |
---|
[163] | 9 | $sequencer->LoadSession($_SESSION['currentSession']); //load session into php part of the sequencer |
---|
[154] | 10 | $sequencer->HandlePostData(); |
---|
[142] | 11 | ?> |
---|
| 12 | |
---|
| 13 | <!-- |
---|
| 14 | To change this template, choose Tools | Templates |
---|
| 15 | and open the template in the editor. |
---|
| 16 | --> |
---|
| 17 | <!DOCTYPE html> |
---|
[144] | 18 | |
---|
[142] | 19 | <html> |
---|
| 20 | <head> |
---|
| 21 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 22 | <title></title> |
---|
[153] | 23 | <?php new StyleSheet("awesome"); |
---|
| 24 | $sequencer->Javascript(); |
---|
| 25 | ?> |
---|
| 26 | |
---|
[142] | 27 | </head> |
---|
| 28 | <body> |
---|
[144] | 29 | <div id="header"> |
---|
[152] | 30 | <?php new Logo(); ?> |
---|
[142] | 31 | </div> |
---|
| 32 | |
---|
| 33 | <div id="wrapper"> |
---|
| 34 | <div id="content"> |
---|
[152] | 35 | <?php $sequencer->init(); ?> |
---|
| 36 | <?php $toolbox = new Toolbox(); ?> |
---|
[142] | 37 | </div> |
---|
[153] | 38 | |
---|
[142] | 39 | </body> |
---|
| 40 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.