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

Last change on this file since 80 was 78, checked in by basvannuland, 14 years ago

save and load application
start with save and load session

File size: 416 bytes
RevLine 
[56]1<?php
2
3/**
4 * Description of Application
5 *
6 * @author fpvanagthoven
7 */
8class Application {
[78]9   
10    public $id;
[75]11    public $title;
12    public $description;
13    public $style;
[56]14
[78]15    public function __construct($id = null, $title = null, $description = null, $style = null)
16    {
17        $this->id = $id;
[75]18        $this->title = $title;
[78]19        $this->description = $description;
20        $this->style = $style;
[56]21    }
22
23
24}
25?>
Note: See TracBrowser for help on using the repository browser.