ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUserCertificatePresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public function __construct(
27  private readonly int $objId,
28  private readonly string $objType,
29  private readonly ?ilUserCertificate $userCertificate,
30  private readonly string $objectTitle,
31  private readonly string $objectDescription,
32  private readonly string $userName = ''
33  ) {
34  }
35 
36  public function getObjId(): int
37  {
38  return $this->objId;
39  }
40 
41  public function getObjType(): string
42  {
43  return $this->objType;
44  }
45 
47  {
48  return $this->userCertificate;
49  }
50 
51  public function getObjectTitle(): string
52  {
53  return $this->objectTitle;
54  }
55 
56  public function getObjectDescription(): string
57  {
58  return $this->objectDescription;
59  }
60 
61  public function getUserName(): string
62  {
63  return $this->userName;
64  }
65 }
$objId
Definition: xapitoken.php:57
__construct(private readonly int $objId, private readonly string $objType, private readonly ?ilUserCertificate $userCertificate, private readonly string $objectTitle, private readonly string $objectDescription, private readonly string $userName='')