source: Dev/branches/jQueryUI/pages_old/sessionEditor.php @ 247

Last change on this file since 247 was 246, checked in by hendrikvanantwerpen, 13 years ago

Created first page mainmenu in new system.
Moved old pages out of project root.
Fixed RDFAPI.php case for people with proper OS'es.

File size: 1.1 KB
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page
3
4if (!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
28    </head>
29    <body>
30        <div id="header">
31            <?php new Logo(); ?>
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        </div>
41        <div id="settingsFields">
42            <input type="hidden" id="sContentTypeField" value="session" />
43        </div>
44
45    </body>
46</html>
Note: See TracBrowser for help on using the repository browser.