source: Dev/trunk/classes/ApplicationMenu.php @ 57

Last change on this file since 57 was 57, checked in by fpvanagthoven, 14 years ago

Refactoring main menu

File size: 474 bytes
RevLine 
[57]1<?php
2
3/**
4 * Description of ApplicationMenu
5 *
6 * @author fpvanagthoven
7 */
8class ApplicationMenu {
9
10    public function __construct() {
11        ApplicationMenu::createApplicationButton();
12    }
13
14    public static function createApplicationButton() {
15        ?>
16        <form action="applicationcreation.php" method="post">
17
18            <input type="submit" value="Create new application" class="surveyButton bigSurveyButton" />
19
20        </form>
21
22        <?php
23    }
24
25}
26?>
Note: See TracBrowser for help on using the repository browser.