ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CertificateResourceHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Certificate;
22 
29 
31 {
32  public function __construct(
33  private readonly ilUserCertificateRepository $user_certificate_repo,
34  private readonly ilCertificateTemplateDatabaseRepository $certificate_template_repo,
35  private readonly IRSS $irss,
36  private readonly ilObjCertificateSettings $global_certificate_settings,
37  private readonly ilCertificateTemplateStakeholder $stakeholder
38  ) {
39  }
40 
41  public function handleResourceChange(ResourceIdentification $background_image): void
42  {
43  if (
44  !$this->user_certificate_repo->isResourceUsed($background_image->serialize()) &&
45  !$this->certificate_template_repo->isResourceUsed($background_image->serialize()) &&
46  (
47  $this->global_certificate_settings->getBackgroundImageIdentification() === null ||
48  (
49  $this->global_certificate_settings
50  ->getBackgroundImageIdentification() instanceof ResourceIdentification &&
51  $this->global_certificate_settings
52  ->getBackgroundImageIdentification()->serialize() !== $background_image->serialize()
53  )
54  )
55  ) {
56  $this->irss->manage()->remove($background_image, $this->stakeholder);
57  }
58  }
59 }
__construct(private readonly ilUserCertificateRepository $user_certificate_repo, private readonly ilCertificateTemplateDatabaseRepository $certificate_template_repo, private readonly IRSS $irss, private readonly ilObjCertificateSettings $global_certificate_settings, private readonly ilCertificateTemplateStakeholder $stakeholder)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handleResourceChange(ResourceIdentification $background_image)