source: Dev/branches/jos-branch/surveyEditor.php @ 245

Last change on this file since 245 was 235, checked in by fpvanagthoven, 13 years ago

getObject.php is de nieuwe pagina die gewoon PHP objecten in JSON zet en echoet. Nu werkt alleen de questionEditor er op, uiteindelijk zou dit ook de infopanel en de sequencer moeten gaan serven.

File size: 848 bytes
RevLine 
[208]1<?php
2require "classes/master.php";
3
4$surveyEditor = new surveyEditorWidget();
5$surveyEditor->handlePost();
6?>
7
8<!--
9To change this template, choose Tools | Templates
10and open the template in the editor.
11-->
12<!DOCTYPE html>
13<html>
14    <head>
15        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
16        <title>Edit survey</title>
17        <?php
18        $surveyEditor->javascript();
19        new StyleSheet("visualeditors");
20        ?>
21    </head>
22    <body>
[235]23        <div id="header">
24            <?php new Logo(); ?>
25        </div>
[208]26        <div id="wrapper">
27            <div id="content">
28                <?php $surveyEditor->init(); ?>
29            </div>
30            <div id="settingsFields">
31                <input type="hidden" id="sContentTypeField" value="Survey" />
32            </div>
33        </div>
34    </body>
35</html>
Note: See TracBrowser for help on using the repository browser.