source:
Dev/trunk/classes/Application.php
@
75
Last change on this file since 75 was 75, checked in by fpvanagthoven, 14 years ago | |
---|---|
File size: 348 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | /** |
4 | * Description of Application |
5 | * |
6 | * @author fpvanagthoven |
7 | */ |
8 | class Application { |
9 | public $title; |
10 | public $description; |
11 | public $style; |
12 | |
13 | public function __construct($title = null, $description = null, $style = null) { |
14 | $this->title = $title; |
15 | $this->description = $description; |
16 | $this->style = $style; |
17 | } |
18 | |
19 | |
20 | } |
21 | ?> |
Note: See TracBrowser
for help on using the repository browser.