Last change
on this file since 152 was
144,
checked in by fpvanagthoven, 13 years ago
|
Fixed mkdir call in ApplicationConnector?.php, now actually makes a directory instead of errors.
Cleaning up of pipeline Sequencer, smaller icons, etc. Trying to get non-db version of editor working properly, then integrate db calls.
|
File size:
1.2 KB
|
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 | */ |
---|
12 | class 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="title">Toolbox</div> |
---|
21 | <p>Add new: </p> |
---|
22 | <div class="creationButton" onClick="document.toolbox.objectToCreate.value = 'Questionnaire'; SubmitToolbox();"><img src="images/icons/questionnaire.png" class="buttonIcon"/><p>Questionnaire</p></div> |
---|
23 | <div class="creationButton" onClick="document.toolbox.objectToCreate.value = 'Application'; SubmitToolbox();"><img src="images/icons/application.png" class="buttonIcon"/><p>Application</p></div> |
---|
24 | <div class="creationButton" onClick="document.toolbox.objectToCreate.value = 'Dashboard'; SubmitToolbox();"><img src="images/icons/dashboard.png" class="buttonIcon"/><p>Dashboard</p></div> |
---|
25 | <input type="hidden" name="objectToCreate" /> |
---|
26 | |
---|
27 | </fieldset> |
---|
28 | </form> |
---|
29 | <?php |
---|
30 | } |
---|
31 | |
---|
32 | } |
---|
33 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.