source: Dev/trunk/classes/Toolbox.php @ 169

Last change on this file since 169 was 168, checked in by fpvanagthoven, 13 years ago
  • moveStep() [js] werkt weer, editor is nu op delete/clear na helemaal functioneel
  • Zit nog steeds een creator bug in savesession.php en selectSession.php
  • getInfo.php is nu aangepast om voor meerdere objecttypes te werken en relevante informatie terug te geven, geformatteerd als table. De styling hiervan moet wel nog beter geregeld worden.
File size: 988 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 * Description of ToolBox
9 *
10 * @author HP
11 */
12class Toolbox {
13
14    public function __construct() {
15        ?>
16
17        <br />
18        <form name="toolbox" action="pipelineEditor.php" method="POST">
19            <fieldset id="toolbox">
20                <div class="fieldsetTitle">Toolbox</div>
21                <p>Add new: </p>
22                <div class="creationButton" onClick="SubmitToolbox('Survey');"><img src="images/icons/survey.png" class="buttonIcon"/><p>Survey</p></div>
23                <div class="creationButton" onClick="SubmitToolbox('Application');"><img src="images/icons/application.png" class="buttonIcon"/><p>Application</p></div>
24                <div class="creationButton" onClick="SubmitToolbox('Dashboard');"><img src="images/icons/dashboard.png" class="buttonIcon"/><p>Dashboard</p></div>
25            </fieldset>
26        </form>
27        <?php
28    }
29
30}
31?>
Note: See TracBrowser for help on using the repository browser.