source: Dev/trunk/pipelineEditor.php @ 183

Last change on this file since 183 was 183, checked in by fpvanagthoven, 13 years ago
File size: 1.0 KB
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page
3
4if (!isset($_SESSION['username'])) {
5    redirect('index.php');
6}
7
8$sequencer = new PipelineSequencer();
9$sequencer->LoadSession($_SESSION['currentSession']); //load session into php part of the sequencer
10$sequencer->HandlePostData();
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("visualeditors");
24        $sequencer->Javascript();
25        ?>
26       
27    </head>
28    <body>
29        <div id="header">
30            <?php new Logo(); ?>
31            <input type="button" onClick="resizeEditor();" value="debug_resize()" />
32        </div>
33
34        <div id="wrapper">
35            <div id="content">
36                <?php $sequencer->init(); ?>
37                <?php $toolbox = new Toolbox(); ?>
38                <?php new PipelineInfoPanel(); ?>
39            </div>
40   
41    </body>
42</html>
Note: See TracBrowser for help on using the repository browser.