ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilStudyProgrammeDeadlineSettings.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 use \ILIAS\UI\Component\Input\Field;
7 use \ILIAS\Refinery\Factory as Refinery;
8 
10 {
14  protected $deadline_period;
15 
19  protected $deadline_date;
20 
21  public function __construct(
22  ?int $deadline_period,
24  ) {
25  if (!is_null($deadline_period) && 0 > $deadline_period) {
26  throw new InvalidArgumentException(
27  'Numbers less than 0 are not allowed'
28  );
29  }
30 
31  $this->deadline_period = $deadline_period;
32  $this->deadline_date = $deadline_date;
33  }
34 
35  public function getDeadlinePeriod() : ?int
36  {
38  }
39 
41  {
42  if (!is_null($deadline_period) && 0 > $deadline_period) {
43  throw new InvalidArgumentException(
44  'Numbers less than 0 are not allowed'
45  );
46  }
47 
48  $clone = clone $this;
49  $clone->deadline_period = $deadline_period;
50  return $clone;
51  }
52 
53  public function getDeadlineDate() : ?DateTime
54  {
55  return $this->deadline_date;
56  }
57 
59  {
60  $clone = clone $this;
61  $clone->deadline_date = $deadline_date;
62  return $clone;
63  }
64 
65  public function toFormInput(
66  Field\Factory $input,
68  Refinery $refinery,
69  Factory $data_factory
70  ) : Field\Input {
71  $format = $data_factory->dateFormat()->germanShort();
72 
73  $grp1 = $input->group([], $lng->txt('prg_no_deadline'));
74  $grp2 = $input->group(
75  [
76  'deadline_period' => $input->numeric(
77  '',
78  $lng->txt('prg_deadline_period_desc')
79  )
80  ->withAdditionalTransformation($refinery->int()->isGreaterThan(-1))
81  ->withValue($this->getDeadlinePeriod() !== null ? $this->getDeadlinePeriod() : null)
82  ],
83  $lng->txt('prg_deadline_period')
84  );
85  $grp3 = $input->group(
86  [
87  'deadline_date' => $input->dateTime(
88  '',
89  $lng->txt('prg_deadline_date_desc')
90  )
91  ->withFormat($format)
92  ->withMinValue(new DateTimeImmutable())
93  ->withValue($this->getDeadlineDate() !== null ? $this->getDeadlineDate()->format('d.m.Y') : '')
94  ],
95  $lng->txt('prg_deadline_date')
96  );
97 
98  $sg = $input->switchableGroup(
99  [
100  'opt_no_deadline' => $grp1,
101  'opt_deadline_period' => $grp2,
102  'opt_deadline_date' => $grp3
103  ],
104  ''
105  );
106 
107  $deadline = "opt_no_deadline";
108  if (!is_null($this->getDeadlinePeriod()) && $this->getDeadlinePeriod() > 0) {
109  $deadline = 'opt_deadline_period';
110  }
111 
112  if (!is_null($this->getDeadlineDate())) {
113  $deadline = 'opt_deadline_date';
114  }
115 
116  return $input->section(
117  ['prg_deadline' => $sg->withValue($deadline)],
118  $lng->txt('prg_deadline_settings')
119  )
120  ->withAdditionalTransformation($refinery->custom()->transformation(function ($vals) {
121  $period = null;
122  $date = null;
123 
124  if (isset($vals['prg_deadline'][1]['deadline_period'])) {
125  $period = (int) $vals['prg_deadline'][1]['deadline_period'];
126  }
127 
128  if (isset($vals['prg_deadline'][1]['deadline_date'])) {
129  $date = new DateTime($vals['prg_deadline'][1]['deadline_date']);
130  }
131 
132  return new ilStudyProgrammeDeadlineSettings($period, $date);
133  }));
134  }
135 }
__construct(?int $deadline_period, ?DateTime $deadline_date)
$lng
$format
Definition: metadata.php:218
Builds data types.
Definition: Factory.php:19
toFormInput(Field\Factory $input, \ilLanguage $lng, Refinery $refinery, Factory $data_factory)
language handling
txt($a_topic, $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...