ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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 }
getPropertyMap()
Return property map (name => type)
__construct(string $type, int $a_id=0, bool $a_reference=true)
Verification object base class.