source: Dev/trunk/pipelineEditor.php @ 188

Last change on this file since 188 was 185, checked in by fpvanagthoven, 13 years ago
File size: 1.1 KB
RevLine 
[142]1<?php
2require 'classes/master.php'; //should be at top of every page
3
[151]4if (!isset($_SESSION['username'])) {
5    redirect('index.php');
6}
[142]7
[178]8$sequencer = new PipelineSequencer();
[185]9$sequencer->LoadSession(); //load session into php part of the sequencer
[154]10$sequencer->HandlePostData();
[142]11?>
12
13<!--
14To change this template, choose Tools | Templates
15and 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>
[184]23        <?php
24        new StyleSheet("visualeditors");
[153]25        $sequencer->Javascript();
26        ?>
[184]27
[142]28    </head>
29    <body>
[144]30        <div id="header">
[152]31            <?php new Logo(); ?>
[142]32        </div>
33
34        <div id="wrapper">
35            <div id="content">
[152]36                <?php $sequencer->init(); ?>
37                <?php $toolbox = new Toolbox(); ?>
[167]38                <?php new PipelineInfoPanel(); ?>
[142]39            </div>
[184]40        </div>
41        <div id="settingsFields">
42            <input type="hidden" id="sContentTypeField" value="session" />
43        </div>
44
[142]45    </body>
46</html>
Note: See TracBrowser for help on using the repository browser.