ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCertificateUserForObjectPreloader.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
27  private static array $certificates = [];
28 
29  public function __construct(private readonly ilUserCertificateRepository $userCertificateRepository, private readonly ilCertificateActiveValidator $activeValidator)
30  {
31  }
32 
33  public function preLoadDownloadableCertificates(int $objectId): void
34  {
35  if ($this->activeValidator->validate()) {
36  $objectIdsWithUserCertificate = $this->userCertificateRepository->fetchUserIdsWithCertificateForObject($objectId);
37  self::$certificates[$objectId] = $objectIdsWithUserCertificate;
38  }
39  }
40 
41  public function isPreloaded(int $objId, int $userId): bool
42  {
43  if (!array_key_exists($objId, self::$certificates)) {
44  return false;
45  }
46 
47  return in_array($userId, self::$certificates[$objId], true);
48  }
49 }
__construct(private readonly ilUserCertificateRepository $userCertificateRepository, private readonly ilCertificateActiveValidator $activeValidator)
$objId
Definition: xapitoken.php:57