Validation - Not complete

This commit is contained in:
Bertrand 2012-05-22 16:05:46 +02:00
commit 4c4d737f9a
4 changed files with 78 additions and 14 deletions

View file

@ -92,6 +92,16 @@ class Question
return $qnode;
}
public function isValidated()
{
$this->validated = true;
}
public function getId()
{
return $this->id;
}
}
?>