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

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

Stubs and some refactoring

File size: 518 bytes
RevLine 
[56]1<?php
2
3/**
4 * Description of Session
5 *
6 * @author fpvanagthoven
7 */
8class Session {
9
10    private $name;
11    private $description;
12    private $date;
13    private $application;
14    private $pipeline;
15
16    public function __construct() {
17       
18    }
19
20    public static function createSessionButton() {
21        ?>
22
23        <form action="sessioncreation.php" method="post">
24
25            <input type="submit" value="Create new session" class="surveyButton bigSurveyButton" />
26
27        </form>
28
29        <?php
30    }
31
32}
33?>
Note: See TracBrowser for help on using the repository browser.