source: Dev/branches/Demo/sessionEditor.php @ 274

Last change on this file since 274 was 228, checked in by fpvanagthoven, 13 years ago
File size: 1.3 KB
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page
3/*
4  if (!isset($_SESSION['userUid'])) {
5  redirect('index.php');
6  }
7 */
8$sequencer = new SessionEditorWidget();
9$sequencer->LoadSession(); //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
24        new StyleSheet("visualeditors");
25        $sequencer->Javascript();
26        ?>
27        <script type='text/javascript'>
28            var onloadFunction = function() {
29                debugger;
30                var ddMenu = new DDMenu();
31                ddMenu.Init();
32            }
33        </script>
34    </head>
35    <body>
36        <div id="header">
37            <?php new Logo(); ?>
38        </div>
39
40        <div id="wrapper">
41            <div id="content">
42                <?php $sequencer->init(); ?>
43                <?php $toolbox = new Toolbox(); ?>
44                <?php new PipelineInfoPanel(); ?>
45            </div>
46        </div>
47        <div id="settingsFields">
48            <input type="hidden" id="sContentTypeField" value="session" />
49        </div>
50
51    </body>
52</html>
Note: See TracBrowser for help on using the repository browser.