19 declare(strict_types=1);
25 public const ID =
'prg_context_manual';
27 private const TITLE =
"prg_title";
29 private const TYPE =
"prg_type";
30 private const LINK =
"prg_link";
60 $this->
lng = $DIC[
'lng'];
61 $this->
lng->loadLanguageModule(
'prg');
71 return $this->
lng->txt(
'prg_mail_context_title');
76 return $this->
lng->txt(
'prg_mail_context_info');
86 $placeholders[self::TITLE] = [
87 'placeholder' =>
'STUDY_PROGRAMME_TITLE',
88 'label' => $this->
lng->txt(self::TITLE)
91 $placeholders[self::DESCRIPTION] = [
92 'placeholder' =>
'STUDY_PROGRAMME_DESCRIPTION',
93 'label' => $this->
lng->txt(self::DESCRIPTION)
96 $placeholders[self::TYPE] = [
97 'placeholder' =>
'STUDY_PROGRAMME_TYPE',
98 'label' => $this->
lng->txt(self::TYPE)
101 $placeholders[self::LINK] = [
102 'placeholder' =>
'STUDY_PROGRAMME_LINK',
103 'label' => $this->
lng->txt(self::LINK)
106 $placeholders[self::ORG_UNIT] = [
107 'placeholder' =>
'STUDY_PROGRAMME_ORG_UNITS',
108 'label' => $this->
lng->txt(self::ORG_UNIT)
111 $placeholders[self::STATUS] = [
112 'placeholder' =>
'STUDY_PROGRAMME_STATUS',
113 'label' => $this->
lng->txt(self::STATUS)
116 $placeholders[self::COMPLETION_DATE] = [
117 'placeholder' =>
'STUDY_PROGRAMME_COMPLETION_DATE',
118 'label' => $this->
lng->txt(self::COMPLETION_DATE)
121 $placeholders[self::COMPLETED_BY] = [
122 'placeholder' =>
'STUDY_PROGRAMME_COMPLETED_BY',
123 'label' => $this->
lng->txt(self::COMPLETED_BY)
126 $placeholders[self::POINTS_REQUIRED] = [
127 'placeholder' =>
'STUDY_PROGRAMME_POINTS_REQUIRED',
128 'label' => $this->
lng->txt(self::POINTS_REQUIRED)
131 $placeholders[self::POINTS_CURRENT] = [
132 'placeholder' =>
'STUDY_PROGRAMME_POINTS_CURRENT',
133 'label' => $this->
lng->txt(self::POINTS_CURRENT)
136 $placeholders[self::DEADLINE] = [
137 'placeholder' =>
'STUDY_PROGRAMME_DEADLINE',
138 'label' => $this->
lng->txt(self::DEADLINE)
141 $placeholders[self::EXPIRE_DATE] = [
142 'placeholder' =>
'STUDY_PROGRAMME_EXPIRE_DATE',
143 'label' => $this->
lng->txt(self::EXPIRE_DATE)
146 $placeholders[self::VALIDITY] = [
147 'placeholder' =>
'STUDY_PROGRAMME_VALIDITY',
148 'label' => $this->
lng->txt(self::VALIDITY)
151 return $placeholders;
158 string $placeholder_id,
159 array $context_parameters,
162 if (is_null($recipient)) {
166 if (!in_array($placeholder_id, [
173 self::COMPLETION_DATE,
175 self::POINTS_REQUIRED,
176 self::POINTS_CURRENT,
186 $assignments = $prg->getAssignmentsOfSingleProgramForUser($recipient->getId());
190 switch ($placeholder_id) {
192 $string = $prg->getTitle();
194 case self::DESCRIPTION:
195 $string = $prg->getDescription();
199 if (!is_null($prg->getSubType())) {
200 $string = $prg->getSubType()->getTitle();
204 $string = ilLink::_getLink((
int) $context_parameters[
'ref_id'],
'prg') .
' ';
210 $string = $this->
statusToRepr($latest->getProgressTree()->getStatus(), $recipient->getLanguage());
212 case self::COMPLETION_DATE:
213 $string = $this->
date2String($latest->getProgressTree()->getCompletionDate(), $recipient);
215 case self::COMPLETED_BY:
217 $id = $latest->getProgressTree()->getCompletionBy();
220 if ($obj->getType() ===
'usr') {
232 case self::POINTS_REQUIRED:
233 $string = (string) $latest->getProgressTree()->getAmountOfPoints();
235 case self::POINTS_CURRENT:
236 $string = (string) $latest->getProgressTree()->getCurrentAmountOfPoints();
239 $string = $latest->getProgressTree()->isInProgress() ?
240 $this->
date2String($latest->getProgressTree()->getDeadline(), $recipient) :
'';
245 if ($latest_successful) {
246 $langvar = $latest_successful->getProgressTree()->isInvalidated() ?
'prg_not_valid' :
'prg_still_valid';
247 $string = $this->
lng->txtlng(
'prg', $langvar, $recipient->getLanguage());
251 case self::EXPIRE_DATE:
253 if ($latest_successful) {
254 $string = $this->
date2String($latest_successful->getProgressTree()->getValidityOfQualification(), $recipient);
258 throw new \Exception(
"cannot resolve placeholder: " . $placeholder_id);
270 if ($a_dat > $b_dat) {
272 } elseif ($a_dat < $b_dat) {
278 return array_shift($assignments);
283 $successful = array_filter(
285 fn($ass) => $ass->getProgressTree()->isSuccessful()
287 if (count($successful) === 0) {
294 if ($a_dat > $b_dat) {
296 } elseif ($a_dat < $b_dat) {
302 return array_shift($successful);
310 return $this->
lng->txtlng(
'prg',
'prg_status_in_progress', $lang);
313 return $this->
lng->txtlng(
'prg',
'prg_status_completed', $lang);
316 return $this->
lng->txtlng(
'prg',
'prg_status_accredited', $lang);
319 return $this->
lng->txtlng(
'prg',
'prg_status_not_relevant', $lang);
322 return $this->
lng->txtlng(
'prg',
'prg_status_failed', $lang);
325 throw new ilException(
"Unknown status: '$status'");
332 if (is_null($date_time)) {
335 if (is_null($user)) {
336 return $date_time->format(self::DATE_FORMAT);
338 return $user->getDateFormat()->applyTo($date_time);
getSpecificPlaceholders()
Return an array of placeholders.
static _lookupTitle(int $obj_id)
OrgUnitUserService $orgUnitUserService
statusToRepr(int $status, string $lang)
date2String(?DateTimeImmutable $date_time=null, ?ilObjUser $user=null)
Class ilMailEnvironmentHelper.
static lookupOrgUnitsRepresentation(int $a_usr_id)
lookup org unit representation
ilMailLanguageHelper $languageHelper
getLatestAssignment(array $assignments)
__construct(?OrgUnitUserService $orgUnitUserService=null, ?ilMailEnvironmentHelper $envHelper=null, ?ilMailUserHelper $usernameHelper=null, ?ilMailLanguageHelper $languageHelper=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
Class ilMailLanguageHelper.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
const STATUS_NOT_RELEVANT
getLatestSuccessfulAssignment(array $assignments)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ?ilObjUser $recipient=null)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
static _lookupTargetRefId(int $a_obj_id)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
ilMailEnvironmentHelper $envHelper
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
static _lookupDeletedDate(int $ref_id)
static _lookupLogin(int $a_user_id)