Ignore:
Timestamp:
09/01/11 15:25:59 (14 years ago)
Author:
fpvanagthoven
Message:

Question code.

File:
1 edited

Legend:

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

    r35 r98  
    1313class Question {
    1414    public $id;
     15    public $code;
    1516    public $title;
    1617    public $type;
     
    1819    public $answers; // format answers['#']
    1920   
    20     public function __construct($id, $title, $type, $description = null)
     21    public function __construct($id, $code, $title, $type, $description = null)
    2122    {
    2223        $this->id = $id;
     24        $this->code = $code;
    2325        $this->title = $title;
    2426        $this->type = $type;
Note: See TracChangeset for help on using the changeset viewer.