19 declare(strict_types=1);
35 private ?
int $object_reference_id =
null,
36 private ?
bool $availability_period_enabled =
null,
39 private ?
bool $visible_when_disabled =
false 45 return $this->object_reference_id;
50 return $this->availability_period_enabled ===
true;
55 return $this->time_limit_start;
60 return $this->time_limit_end;
65 return $this->visible_when_disabled;
70 if ($this->availability_period_enabled ===
false) {
74 $timing_start_utc = $this->timing_start->setTimezone(
new \
DateTimeZone(
'UTC'));
75 $timing_end_utc = $this->timing_end->setTimezone(
new \
DateTimeZone(
'UTC'));
76 $now_utc = new \DateTimeImmutable(
'now',
new \
DateTimeZone(
'UTC'));
78 if ($timing_start_utc < $now_utc && $now_utc < $timing_end_utc) {
88 $clone->object_reference_id = $object_reference_id;
96 ?array $environment =
null 107 $inputs[
'time_limit_start'] = $field_factory->dateTime($language->
txt(
'rep_activation_limited_start'))
108 ->withTimezone($environment[
'user_time_zone'])
109 ->withFormat($environment[
'user_date_format'])
111 $inputs[
'time_limit_end'] = $field_factory->dateTime($language->
txt(
'rep_activation_limited_end'))
112 ->withTimezone($environment[
'user_time_zone'])
113 ->withFormat($environment[
'user_date_format'])
115 $inputs[
'visible_when_disabled'] = $field_factory->checkbox(
116 $language->
txt(
'activation_visible_when_disabled'),
117 $language->
txt(
'activation_visible_when_disabled_info')
120 return $field_factory->optionalGroup(
122 $language->
txt(
'rep_time_based_availability'),
123 $language->
txt(
'rep_time_based_availability_info')
125 ->withAdditionalTransformation($trafo)
131 return $refinery->custom()->transformation(
132 function (?array $vs):
self {
134 || $vs[
'time_limit_start'] ===
null 135 && $vs[
'time_limit_end'] ===
null) {
142 $vs[
'time_limit_start']?->setTimezone(
new \
DateTimeZone(
'UTC')),
143 $vs[
'time_limit_end']?->setTimezone(
new \
DateTimeZone(
'UTC')),
144 $vs[
'visible_when_disabled']
154 return $refinery->custom()->constraint(
155 function (?array $vs):
bool {
157 || $vs[
'time_limit_start'] ===
null 158 || $vs[
'time_limit_end'] ===
null) {
162 if ($vs[
'time_limit_start'] > $vs[
'time_limit_end']) {
168 $language->
txt(
'duration_end_must_not_be_earlier_than_start')
getAvailabilityPeriodStart()
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
toForm(\ilLanguage $language, FieldFactory $field_factory, Refinery $refinery, ?array $environment=null)
A constraint encodes some resrtictions on values.
getConstraintForActivationLimitedOptionalGroup(Refinery $refinery, \ilLanguage $language)
getTransformationForActivationLimitedOptionalGroup(Refinery $refinery)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withObjectReferenceId(int $object_reference_id)
getAvailabilityPeriodEnabled()
__construct(private ?int $object_reference_id=null, private ?bool $availability_period_enabled=null, private ?\DateTimeImmutable $time_limit_start=null, private ?\DateTimeImmutable $time_limit_end=null, private ?bool $visible_when_disabled=false)
getAvailabilityPeriodEnd()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getValueForActivationLimitedOptionalGroup(\DateTimeZone $timezone)