ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilObjExerciseVerification.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13{
14 protected function initType()
15 {
16 $this->type = "excv";
17 }
18
19 protected function getPropertyMap()
20 {
21 return array("issued_on" => self::TYPE_DATE,
22 "file" => self::TYPE_STRING
23 /*
24 "success" => self::TYPE_BOOL,
25 "mark" => self::TYPE_STRING,
26 "comment" => self::TYPE_STRING
27 */
28 );
29 }
30}
An exception for terminatinating execution or to throw for unit testing.
getPropertyMap()
Return property map (name => type)
Verification object base class.