19 declare(strict_types=1);
33 if (
null === $language) {
35 $language = $DIC->language();
36 $language->loadLanguageModule(
'certificate');
39 if (
null === $defaultPlaceholderValues) {
40 $defaultPlaceholderValues = new \ilDefaultPlaceholderValues();
43 if (
null === $objectHelper) {
44 $objectHelper = new \ilCertificateObjectHelper();
48 $this->defaultPlaceholderValuesObject = $defaultPlaceholderValues;
63 $object = $this->objectHelper->getInstanceByObjId($objId);
64 $placeholders = $this->defaultPlaceholderValuesObject->getPlaceholderValues($userId, $objId);
65 $assignments = $object->getAssignmentsOfSingleProgramForUser($userId);
67 $type = $object->getSubType();
73 $latest_progress ? (
string) $latest_progress->getCurrentAmountOfPoints() :
'' 76 $latest_progress && $latest_progress->getCompletionDate() instanceof \DateTimeImmutable ? $latest_progress->getCompletionDate(
77 )->format(
'd.m.Y') :
'' 80 $latest_progress && $latest_progress->getValidityOfQualification(
81 ) instanceof \DateTimeImmutable ? $latest_progress->getValidityOfQualification()->format(
'd.m.Y') :
'' 93 $placeholders = $this->defaultPlaceholderValuesObject->getPlaceholderValuesForPreview($userId, $objId);
95 $object = $this->objectHelper->getInstanceByObjId($objId);
96 $type = $object->getSubType();
102 $placeholders[
'PRG_COMPLETION_DATE'] = $today;
103 $placeholders[
'PRG_EXPIRES_AT'] = $today;
104 return $placeholders;
109 if (count($assignments) === 0) {
112 $latest_progress =
null;
114 if ($latest_successful) {
115 $latest_progress = $latest_successful->getProgressTree();
117 return $latest_progress;
122 $successful = array_filter(
124 fn($ass) => $ass->getProgressTree()->isSuccessful()
126 if (count($successful) === 0) {
131 $unlimited = array_filter(
133 fn($ass) => is_null($ass->getProgressTree()->getValidityOfQualification())
135 if (count($unlimited) > 0) {
136 $successful = $unlimited;
140 if ($a_dat > $b_dat) {
142 } elseif ($a_dat < $b_dat) {
150 $limited = array_filter(
152 fn($ass) => !is_null($ass->getProgressTree()->getValidityOfQualification())
154 $successful = $limited;
158 if ($a_dat > $b_dat) {
160 } elseif ($a_dat < $b_dat) {
167 return array_shift($successful);
getPlaceholderValues(int $userId, int $objId)
This method MUST return an array that contains the actual data for the given user of the given object...
readonly ilDefaultPlaceholderValues $defaultPlaceholderValuesObject
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getLatestSuccessfulAssignment(array $assignments)
readonly ilCertificateObjectHelper $objectHelper
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)
getRelevantProgressFromAssignments(array $assignments)
getPlaceholderValuesForPreview(int $userId, int $objId)
This method is different then the 'getPlaceholderValues' 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...