Ignore:
Timestamp:
08/08/11 17:25:20 (14 years ago)
Author:
basvannuland
Message:

save and load application
start with save and load session

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/classes/Application.php

    r75 r78  
    77 */
    88class Application {
     9   
     10    public $id;
    911    public $title;
    1012    public $description;
    1113    public $style;
    1214
    13     public function __construct($title = null, $description = null, $style = null) {
     15    public function __construct($id = null, $title = null, $description = null, $style = null)
     16    {
     17        $this->id = $id;
    1418        $this->title = $title;
    15                 $this->description = $description;
    16                 $this->style = $style;
     19        $this->description = $description;
     20        $this->style = $style;
    1721    }
    1822
Note: See TracChangeset for help on using the changeset viewer.