ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStudyProgrammePlaceholderValues.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  private readonly \ilDefaultPlaceholderValues $defaultPlaceholderValuesObject;
26  private readonly \ilCertificateObjectHelper $objectHelper;
27 
28  public function __construct(
29  ?\ilDefaultPlaceholderValues $defaultPlaceholderValues = null,
30  ?\ilLanguage $language = null,
31  ?\ilCertificateObjectHelper $objectHelper = null
32  ) {
33  if (null === $language) {
34  global $DIC;
35  $language = $DIC->language();
36  $language->loadLanguageModule('certificate');
37  }
38 
39  if (null === $defaultPlaceholderValues) {
40  $defaultPlaceholderValues = new \ilDefaultPlaceholderValues();
41  }
42 
43  if (null === $objectHelper) {
44  $objectHelper = new \ilCertificateObjectHelper();
45  }
46  $this->objectHelper = $objectHelper;
47 
48  $this->defaultPlaceholderValuesObject = $defaultPlaceholderValues;
49  }
50 
61  public function getPlaceholderValues(int $userId, int $objId): array
62  {
63  $object = $this->objectHelper->getInstanceByObjId($objId);
64  $placeholders = $this->defaultPlaceholderValuesObject->getPlaceholderValues($userId, $objId);
65  $assignments = $object->getAssignmentsOfSingleProgramForUser($userId);
66  $latest_progress = $this->getRelevantProgressFromAssignments($assignments);
67  $type = $object->getSubType();
68 
69  $placeholders['PRG_TITLE'] = \ilLegacyFormElementsUtil::prepareFormOutput($object->getTitle());
70  $placeholders['PRG_DESCRIPTION'] = \ilLegacyFormElementsUtil::prepareFormOutput($object->getDescription());
71  $placeholders['PRG_TYPE'] = \ilLegacyFormElementsUtil::prepareFormOutput($type ? $type->getTitle() : '');
72  $placeholders['PRG_POINTS'] = \ilLegacyFormElementsUtil::prepareFormOutput(
73  $latest_progress ? (string) $latest_progress->getCurrentAmountOfPoints() : ''
74  );
75  $placeholders['PRG_COMPLETION_DATE'] = \ilLegacyFormElementsUtil::prepareFormOutput(
76  $latest_progress && $latest_progress->getCompletionDate() instanceof \DateTimeImmutable ? $latest_progress->getCompletionDate(
77  )->format('d.m.Y') : ''
78  );
79  $placeholders['PRG_EXPIRES_AT'] = \ilLegacyFormElementsUtil::prepareFormOutput(
80  $latest_progress && $latest_progress->getValidityOfQualification(
81  ) instanceof \DateTimeImmutable ? $latest_progress->getValidityOfQualification()->format('d.m.Y') : ''
82  );
83  return $placeholders;
84  }
85 
91  public function getPlaceholderValuesForPreview(int $userId, int $objId): array
92  {
93  $placeholders = $this->defaultPlaceholderValuesObject->getPlaceholderValuesForPreview($userId, $objId);
94 
95  $object = $this->objectHelper->getInstanceByObjId($objId);
96  $type = $object->getSubType();
97  $today = \ilLegacyFormElementsUtil::prepareFormOutput((new \DateTime())->format('d.m.Y'));
98  $placeholders['PRG_TITLE'] = \ilLegacyFormElementsUtil::prepareFormOutput($object->getTitle());
99  $placeholders['PRG_DESCRIPTION'] = \ilLegacyFormElementsUtil::prepareFormOutput($object->getDescription());
100  $placeholders['PRG_TYPE'] = \ilLegacyFormElementsUtil::prepareFormOutput($type ? $type->getTitle() : '');
101  $placeholders['PRG_POINTS'] = \ilLegacyFormElementsUtil::prepareFormOutput((string) $object->getPoints());
102  $placeholders['PRG_COMPLETION_DATE'] = $today;
103  $placeholders['PRG_EXPIRES_AT'] = $today;
104  return $placeholders;
105  }
106 
107  protected function getRelevantProgressFromAssignments(array $assignments): ?\ilPRGProgress
108  {
109  if (count($assignments) === 0) {
110  return null;
111  }
112  $latest_progress = null;
113  $latest_successful = $this->getLatestSuccessfulAssignment($assignments);
114  if ($latest_successful) {
115  $latest_progress = $latest_successful->getProgressTree();
116  }
117  return $latest_progress;
118  }
119 
120  protected function getLatestSuccessfulAssignment(array $assignments): ?\ilPRGAssignment
121  {
122  $successful = array_filter(
123  $assignments,
124  fn($ass) => $ass->getProgressTree()->isSuccessful()
125  );
126  if (count($successful) === 0) {
127  return null;
128  }
129 
130  //is there an unlimited validity? if so, take latest.
131  $unlimited = array_filter(
132  $successful,
133  fn($ass) => is_null($ass->getProgressTree()->getValidityOfQualification())
134  );
135  if (count($unlimited) > 0) {
136  $successful = $unlimited;
137  usort($successful, static function (\ilPRGAssignment $a, \ilPRGAssignment $b): int {
138  $a_dat = $a->getProgressTree()->getCompletionDate();
139  $b_dat = $b->getProgressTree()->getCompletionDate();
140  if ($a_dat > $b_dat) {
141  return -1;
142  } elseif ($a_dat < $b_dat) {
143  return 1;
144  } else {
145  return 0;
146  }
147  });
148  } else {
149  //there are (only) limited validities: take the one that lasts the longest.
150  $limited = array_filter(
151  $successful,
152  fn($ass) => !is_null($ass->getProgressTree()->getValidityOfQualification())
153  );
154  $successful = $limited;
155  usort($successful, static function (\ilPRGAssignment $a, \ilPRGAssignment $b): int {
156  $a_dat = $a->getProgressTree()->getValidityOfQualification();
157  $b_dat = $b->getProgressTree()->getValidityOfQualification();
158  if ($a_dat > $b_dat) {
159  return -1;
160  } elseif ($a_dat < $b_dat) {
161  return 1;
162  } else {
163  return 0;
164  }
165  });
166  }
167  return array_shift($successful);
168  }
169 }
getPlaceholderValues(int $userId, int $objId)
This method MUST return an array that contains the actual data for the given user of the given object...
$objId
Definition: xapitoken.php:57
static prepareFormOutput($a_str, bool $a_strip=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
__construct(?\ilDefaultPlaceholderValues $defaultPlaceholderValues=null, ?\ilLanguage $language=null, ?\ilCertificateObjectHelper $objectHelper=null)
global $DIC
Definition: shib_login.php:22
getPlaceholderValuesForPreview(int $userId, int $objId)
This method is different then the &#39;getPlaceholderValues&#39; method, this method is used to create a plac...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...