ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStudyProgrammeAssessmentSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
26  public const STATUS_DRAFT = 10;
27  public const STATUS_ACTIVE = 20;
28  public const STATUS_OUTDATED = 30;
29 
30  public static array $STATUS = [
31  self::STATUS_DRAFT,
32  self::STATUS_ACTIVE,
33  self::STATUS_OUTDATED
34  ];
35 
36  protected int $points;
37  protected int $status;
38 
39  public function __construct(int $points, int $status)
40  {
41  if (0 > $points) {
42  throw new InvalidArgumentException('Numbers less than 0 are not allowed');
43  }
44 
45  if (!in_array($status, self::$STATUS)) {
46  throw new InvalidArgumentException("No valid status: '$status'");
47  }
48 
49  $this->points = $points;
50  $this->status = $status;
51  }
52 
53  public function getPoints(): int
54  {
55  return $this->points;
56  }
57 
58  public function withPoints(int $points): ilStudyProgrammeAssessmentSettings
59  {
60  if (0 > $points) {
61  throw new InvalidArgumentException('Numbers less than 0 are not allowed');
62  }
63 
64  $clone = clone $this;
65  $clone->points = $points;
66  return $clone;
67  }
68 
69  public function getStatus(): int
70  {
71  return $this->status;
72  }
73 
74  public function withStatus(int $status): ilStudyProgrammeAssessmentSettings
75  {
76  if (!in_array($status, self::$STATUS)) {
77  throw new InvalidArgumentException("No valid status: '$status'");
78  }
79 
80  $clone = clone $this;
81  $clone->status = $status;
82  return $clone;
83  }
84 
85  public function toFormInput(
86  Field\Factory $input,
89  ): \ILIAS\UI\Component\Input\Container\Form\FormInput {
90  $num = $input
91  ->numeric($lng->txt('prg_points'), $lng->txt('prg_points_byline'))
92  ->withAdditionalTransformation($refinery->int()->isGreaterThanOrEqual(0))
93  ->withAdditionalTransformation($refinery->int()->isLessThanOrEqual(2147483647))
94  ->withRequired(true)
95  ->withValue($this->getPoints())
96  ;
97  $select = $input
98  ->select(
99  $lng->txt('prg_status'),
100  $this->getStatusOptions($lng),
101  $lng->txt('prg_status_byline')
102  )
103  ->withValue($this->getStatus())
104  ->withRequired(true)
105  ;
106 
107  return $input->section(
108  [
109  'points' => $num,
110  'status' => $select
111  ],
112  $lng->txt('prg_assessment')
113  )
114  ->withAdditionalTransformation($refinery->custom()->transformation(function ($vals) {
116  (int) $vals['points'],
117  (int) $vals['status']
118  );
119  }));
120  }
121 
122  protected function getStatusOptions(ilLanguage $lng): array
123  {
124  return [
125  ilStudyProgrammeSettings::STATUS_DRAFT => $lng->txt("prg_status_draft"),
126  ilStudyProgrammeSettings::STATUS_ACTIVE => $lng->txt("prg_status_active"),
127  ilStudyProgrammeSettings::STATUS_OUTDATED => $lng->txt("prg_status_outdated")
128  ];
129  }
130 }
This is what a factory for input fields looks like.
Definition: Factory.php:28
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...
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
global $lng
Definition: privfeed.php:31
This describes inputs that can be used in forms.
Definition: FormInput.php:32
toFormInput(Field\Factory $input, ilLanguage $lng, Refinery $refinery)