source: Dev/branches/jos-branch/classes/widgets/Toolbox.php @ 230

Last change on this file since 230 was 230, checked in by jkraaijeveld, 13 years ago

Made most functionality from the demo branch work with new database.

File size: 2.1 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 */
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                <ul id="toolboxMenu">
24                    <li>
25                        <div class="bigButton toolbox" onclick="ddMenu.Open('toolbox_m1')"><img src="images/icons/survey.png" class="buttonIcon" /><p>Survey</p>
26                            <div id="toolbox_m1" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
27                                <a href="#" >+ Add new</a>
28                                <a href="#">> Add existing</a>
29                            </div>
30
31                        </div>
32                    </li>
33                    <li>
34                        <div class="bigButton toolbox" onClick="ddMenu.Open('toolbox_m2')"><img src="images/icons/application.png" class="buttonIcon" /><p>Application</p>
35                            <div id="toolbox_m2" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
36                                <a href="#">+ Add new</a>
37                                <a href="#">> Add existing</a>
38                            </div>
39                        </div>
40                    </li>
41                    <li>
42                        <div class="bigButton toolbox" onClick="ddMenu.Open('toolbox_m3')"><img src="images/icons/dashboard.png" class="buttonIcon" /><p>Dashboard</p>
43                            <div id="toolbox_m3" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
44                                <a href="#">+ Add new</a>
45                                <a href="#">> Add existing</a>
46                            </div>
47                        </div>
48                    </li>
49                </ul>
50            </div>
51        </div>
52        <?php
53    }
54
55}
56?>
Note: See TracBrowser for help on using the repository browser.