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

Last change on this file since 198 was 185, checked in by fpvanagthoven, 13 years ago
File size: 1012 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
19        <div id="toolbox" class="largeFrame">
20            <div class="largeTitle">Toolbox</div>
21            <div class="content">
22                <p style="float: left; clear:both; margin-bottom: 1em;">Add new:</p>
23                <div class="bigButton toolbox" onClick="submitToolbox('Survey');"><img src="images/icons/survey.png" class="buttonIcon" /><p>Survey</p></div>
24                <div class="bigButton toolbox" onClick="submitToolbox('Application');"><img src="images/icons/application.png" class="buttonIcon" /><p>Application</p></div>
25                <div class="bigButton toolbox" onClick="submitToolbox('Dashboard');"><img src="images/icons/dashboard.png" class="buttonIcon" /><p>Dashboard</p></div>
26            </div>
27        </div>
28        <?php
29    }
30
31}
32?>
Note: See TracBrowser for help on using the repository browser.