Ignore:
Timestamp:
08/08/11 15:12:46 (14 years ago)
Author:
fpvanagthoven
Message:

Application should now just be RDF-saved. Beginning on DashboardTool?.php.

File:
1 edited

Legend:

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

    r57 r75  
    77 */
    88class Application {
     9    public $title;
     10    public $description;
     11    public $style;
    912
    10     private $title;
    11     private $description;
    12     private $style;
    13 
    14     public function __construct() {
    15        
     13    public function __construct($title = null, $description = null, $style = null) {
     14        $this->title = $title;
     15                $this->description = $description;
     16                $this->style = $style;
    1617    }
    1718
Note: See TracChangeset for help on using the changeset viewer.