source: Dev/trunk/classes/PipelineInfoPanel.php @ 198

Last change on this file since 198 was 178, checked in by fpvanagthoven, 13 years ago
  • returnQuestionDisplay.php is vergelijkbaar met returnStep.php. Stuur "uids=blablablabla" erheen en je krijgt de HTML markup voor de question display terug als plain text. Deze gaat worden gebruikt in de surveyEditor, zelfde principe als pipelineSequencer/returnStep.php
  • Nieuwe icons, alpha channel. Betere styling mee mogelijk, formaat/cropping is nog wel een beetje weird.
  • surveyEditorWidget.php is de survey versie van pipelineSequencer.php. (Ook hier weer een consistent naming scheme toepassen? Als in: pipelineEditor->pipelineEditorWidget, surveyEditor->surveyEditorWidget, etc...?
  • layout van pipelineEditor.php klopt nu weer en werkt nu helemaal op de nieuwe stylesheet, visualeditors.css. Logo, header en navbar stuff moet nog wel gemaakt worden.
  • surveyEditorScripts.js: scripts voor, verrassing, surveyEditor.php. loadSurvey werkt, drawQuestions ook bijna. BELANGRIJK! Deze editor werkt met global variables ipv de hidden fields die in pipelineSequencer.php gebruikt worden. Om conflicten te voorkomen wordt alles opgeslagen in een object literal "surveyEditor".
File size: 674 bytes
Line 
1<?php
2/*
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7/**
8 * Info panel, to the side of the Toolbox, showing various stats and links for the current pipeline.
9 *
10 * @author Thijs Schipper
11 */
12class PipelineInfoPanel {
13
14    private $linkedSequencer;
15
16    public function __construct() {
17        ?>
18        <div>
19            <div id="infoPanel" class="largeFrame">
20                <div class="largeTitle">
21                    Info
22                </div>
23                <div id="infoPanelContent" class="content">
24                   
25                </div>
26            </fieldset>
27        </div>
28        <?php
29    }
30
31}
32?>
Note: See TracBrowser for help on using the repository browser.