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 |
Rev | Line | |
---|---|---|
[56] | 1 | <?php |
2 | ||
3 | /** | |
4 | * Description of Application | |
5 | * | |
6 | * @author fpvanagthoven | |
7 | */ | |
8 | class Application { | |
[75] | 9 | public $title; |
10 | public $description; | |
11 | public $style; | |
[56] | 12 | |
[75] | 13 | public function __construct($title = null, $description = null, $style = null) { |
14 | $this->title = $title; | |
15 | $this->description = $description; | |
16 | $this->style = $style; | |
[56] | 17 | } |
18 | ||
19 | ||
20 | } | |
21 | ?> |
Note: See TracBrowser
for help on using the repository browser.