ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilCertificateVerificationObject.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8{
9 public function __construct(string $type, int $a_id = 0, bool $a_reference = true)
10 {
11 $this->type = $type;
12
13 parent::__construct($a_id, $a_reference);
14 }
15
19 protected function initType()
20 {
21 }
22
28 protected function getPropertyMap()
29 {
30 return array(
31 "issued_on" => self::TYPE_DATE,
32 "file" => self::TYPE_STRING
33 );
34 }
35}
An exception for terminatinating execution or to throw for unit testing.
getPropertyMap()
Return property map (name => type)
__construct(string $type, int $a_id=0, bool $a_reference=true)
Verification object base class.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc