ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilCertificateUserDefinedFieldsHelper.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
23
28{
29 private readonly Profile $profile;
30
31 public function __construct()
32 {
33 global $DIC;
34 $this->profile = $DIC['user']->getProfile();
35 }
40 public function getFields(): array
41 {
42 return $this->profile->getVisibleUserDefinedFields(Context::Certificate);
43 }
44}
global $DIC
Definition: shib_login.php:26