ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ObjectAvailabilityPeriodProperty.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
33 {
34  public function __construct(
35  private ?int $object_reference_id = null,
36  private ?bool $availability_period_enabled = null,
37  private ?\DateTimeImmutable $time_limit_start = null,
38  private ?\DateTimeImmutable $time_limit_end = null,
39  private ?bool $visible_when_disabled = false
40  ) {
41  }
42 
43  public function getObjectReferenceId(): ?int
44  {
45  return $this->object_reference_id;
46  }
47 
48  public function getAvailabilityPeriodEnabled(): bool
49  {
50  return $this->availability_period_enabled === true;
51  }
52 
54  {
55  return $this->time_limit_start;
56  }
57 
59  {
60  return $this->time_limit_end;
61  }
62 
63  public function getVisibleWhenDisabled(): bool
64  {
65  return $this->visible_when_disabled;
66  }
67 
68  public function objectCurrentlyEnabled(): bool
69  {
70  if ($this->availability_period_enabled === false) {
71  return true;
72  }
73 
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'));
77 
78  if ($timing_start_utc < $now_utc && $now_utc < $timing_end_utc) {
79  return true;
80  }
81 
82  return false;
83  }
84 
85  public function withObjectReferenceId(int $object_reference_id): self
86  {
87  $clone = clone $this;
88  $clone->object_reference_id = $object_reference_id;
89  return $clone;
90  }
91 
92  public function toForm(
93  \ilLanguage $language,
94  FieldFactory $field_factory,
96  ?array $environment = null
97  ): FormInput {
99  $refinery,
100  $language
101  );
102  $trafo = $this->getTransformationForActivationLimitedOptionalGroup($refinery);
104  new \DateTimeZone($environment['user_time_zone'])
105  );
106 
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'])
110  ->withUseTime(true);
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'])
114  ->withUseTime(true);
115  $inputs['visible_when_disabled'] = $field_factory->checkbox(
116  $language->txt('activation_visible_when_disabled'),
117  $language->txt('activation_visible_when_disabled_info')
118  );
119 
120  return $field_factory->optionalGroup(
121  $inputs,
122  $language->txt('rep_time_based_availability'),
123  $language->txt('rep_time_based_availability_info')
124  )->withAdditionalTransformation($constraint)
125  ->withAdditionalTransformation($trafo)
126  ->withValue($value);
127  }
128 
130  {
131  return $refinery->custom()->transformation(
132  function (?array $vs): self {
133  if ($vs === null
134  || $vs['time_limit_start'] === null
135  && $vs['time_limit_end'] === null) {
136  return new self($this->getObjectReferenceId());
137  }
138 
139  return new self(
140  $this->getObjectReferenceId(),
141  true,
142  $vs['time_limit_start']?->setTimezone(new \DateTimeZone('UTC')),
143  $vs['time_limit_end']?->setTimezone(new \DateTimeZone('UTC')),
144  $vs['visible_when_disabled']
145  );
146  }
147  );
148  }
149 
152  \ilLanguage $language
153  ): Constraint {
154  return $refinery->custom()->constraint(
155  function (?array $vs): bool {
156  if ($vs === null
157  || $vs['time_limit_start'] === null
158  || $vs['time_limit_end'] === null) {
159  return true;
160  }
161 
162  if ($vs['time_limit_start'] > $vs['time_limit_end']) {
163  return false;
164  }
165 
166  return true;
167  },
168  $language->txt('duration_end_must_not_be_earlier_than_start')
169  );
170  }
171 
172 
173  private function getValueForActivationLimitedOptionalGroup(\DateTimeZone $timezone): ?array
174  {
175  $value = null;
176  if ($this->getAvailabilityPeriodEnabled()) {
177  $value = [
178  'time_limit_start' => $this->getAvailabilityPeriodStart()?->setTimezone($timezone)->format('Y-m-d H:i') ?? '',
179  'time_limit_end' => $this->getAvailabilityPeriodEnd()?->setTimezone($timezone)->format('Y-m-d H:i') ?? '',
180  'visible_when_disabled' => $this->getVisibleWhenDisabled()
181  ];
182  }
183  return $value;
184  }
185 }
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.
Definition: Constraint.php:31
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__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)
A transformation is a function from one datatype to another.
This describes inputs that can be used in forms.
Definition: FormInput.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...