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

Last change on this file since 167 was 167, checked in by fpvanagthoven, 13 years ago
  • Save functie verbeterd, nu confirm? parameter.
  • Begin aan infopanel gemaakt
  • moveStep functie in JS gezet, werkt nog niet helemaal goed (refreshed niet!)
  • General CSS layout verbeterd van pipelineEditor.php
  • edit button werkt nu.
  • saveSession zit nog steeds een error in, nog niet weten te fixen. Heeft met creator te maken.
File size: 1000 bytes
RevLine 
[144]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">
[167]20                <div class="fieldsetTitle">Toolbox</div><br /><br />
[144]21                <p>Add new: </p>
[165]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>
[144]25            </fieldset>
26        </form>
27        <?php
28    }
29
30}
31?>
Note: See TracBrowser for help on using the repository browser.