source: Dev/branches/jQueryUI/client/pages_old/surveyEditor.php @ 254

Last change on this file since 254 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

File size: 848 bytes
Line 
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>
23        <div id="header">
24            <?php new Logo(); ?>
25        </div>
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.