source: Dev/trunk/classes/Application.php @ 56

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

Stubs and some refactoring

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