1<?php
2
3/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
6/**
7 * Class ilObjCmiXapiVerfication
8 *
9 * @author      Uwe Kohnle <kohnle@internetlehrer-gmbh.de>
10 * @author      Björn Heyser <info@bjoernheyser.de>
11 * @author      Stefan Schneider <info@eqsoft.de>
12 *
13 * @package     Module/CmiXapi
14 */
15class ilObjCmiXapiVerification extends ilVerificationObject
16{
17    protected function initType()
18    {
19        $this->type = "cmxv";
20    }
21
22    protected function getPropertyMap()
23    {
24        return array("issued_on" => self::TYPE_DATE,
25            "file" => self::TYPE_STRING
26        );
27    }
28}
29