source: Dev/trunk/pipelineEditor.php @ 153

Last change on this file since 153 was 153, checked in by fpvanagthoven, 13 years ago
File size: 969 bytes
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page
3
4if (!isset($_SESSION['username'])) {
5    $_SESSION['message'] = "You were redirected here because your session timed out or you used an invalid link.";
6    redirect('index.php');
7}
8
9$sequencer = new PipelineSequencer();
10$sequencer->GetFromDB($_SESSION['currentSession']);
11?>
12
13<!--
14To change this template, choose Tools | Templates
15and open the template in the editor.
16-->
17<!DOCTYPE html>
18
19<html>
20    <head>
21        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
22        <title></title>
23        <?php new StyleSheet("awesome");
24        $sequencer->Javascript();
25        ?>
26       
27    </head>
28    <body>
29        <div id="header">
30            <?php new Logo(); ?>
31        </div>
32
33        <div id="wrapper">
34            <div id="content">
35                <?php $sequencer->init(); ?>
36                <?php $toolbox = new Toolbox(); ?>
37            </div>
38   
39    </body>
40</html>
Note: See TracBrowser for help on using the repository browser.