ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsGamification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
29 
31 {
32  public const HIGHSCORE_SHOW_OWN_TABLE = 1;
33  public const HIGHSCORE_SHOW_TOP_TABLE = 2;
34  public const HIGHSCORE_SHOW_ALL_TABLES = 3;
35 
36  protected bool $highscore_enabled = false;
37  protected bool $highscore_anon = true;
38  protected bool $highscore_achieved_ts = true;
39  protected bool $highscore_score = true;
40  protected bool $highscore_percentage = true;
41  protected bool $highscore_hints = true;
42  protected bool $highscore_wtime = true;
43  protected bool $highscore_own_table = true;
44  protected bool $highscore_top_table = true;
45  protected int $highscore_top_num = 10;
46 
47 
48  public function __construct(int $test_id)
49  {
50  parent::__construct($test_id);
51  }
52 
53  public function toForm(
57  ?array $environment = null
58  ): FormInput {
59  $optional_group = $f->optionalGroup(
60  [
61  'highscore_mode' => $f->radio($lng->txt('tst_highscore_mode'), "")
62  ->withOption((string) self::HIGHSCORE_SHOW_OWN_TABLE, $lng->txt('tst_highscore_own_table'), $lng->txt('tst_highscore_own_table_description'))
63  ->withOption((string) self::HIGHSCORE_SHOW_TOP_TABLE, $lng->txt('tst_highscore_top_table'), $lng->txt('tst_highscore_top_table_description'))
64  ->withOption((string) self::HIGHSCORE_SHOW_ALL_TABLES, $lng->txt('tst_highscore_all_tables'), $lng->txt('tst_highscore_all_tables_description'))
65  ->withValue($this->getHighScoreMode() > 0 ? (string) $this->getHighScoreMode() : '')
66  ->withRequired(true)
67  ,
68  'highscore_top_num' => $f->numeric($lng->txt('tst_highscore_top_num'), $lng->txt('tst_highscore_top_num_description'))
69  ->withRequired(true)
70  ->withValue($this->getHighscoreTopNum()),
71  'highscore_anon' => $f->checkbox(
72  $lng->txt('tst_highscore_anon'),
73  $lng->txt('tst_highscore_anon_description')
74  )->withValue($this->getHighscoreAnon()),
75  'highscore_achieved_ts' => $f->checkbox(
76  $lng->txt('tst_highscore_achieved_ts'),
77  $lng->txt('tst_highscore_achieved_ts_description')
78  )->withValue($this->getHighscoreAchievedTS()),
79  'highscore_score' => $f->checkbox(
80  $lng->txt('tst_highscore_score'),
81  $lng->txt('tst_highscore_score_description')
82  )->withValue($this->getHighscoreScore()),
83  'highscore_percentage' => $f->checkbox(
84  $lng->txt('tst_highscore_percentage'),
85  $lng->txt('tst_highscore_percentage_description')
86  )->withValue($this->getHighscorePercentage()),
87  'highscore_hints' => $f->checkbox(
88  $lng->txt('tst_highscore_hints'),
89  $lng->txt('tst_highscore_hints_description')
90  )->withValue($this->getHighscoreHints()),
91  'highscore_wtime' => $f->checkbox(
92  $lng->txt('tst_highscore_wtime'),
93  $lng->txt('tst_highscore_wtime_description')
94  )->withValue($this->getHighscoreWTime())
95 
96  ],
97  $lng->txt('tst_highscore_enabled'),
98  $lng->txt('tst_highscore_description')
99  );
100 
101  if (!$this->getHighscoreEnabled()) {
102  $optional_group = $optional_group->withValue(null);
103  }
104 
105  $fields = ['highscore' => $optional_group];
106  return $f->section($fields, $lng->txt('tst_results_gamification'))
108  $refinery->custom()->transformation(
109  function ($v) {
110  $settings = clone $this;
111 
112  if (! $v['highscore']) {
113  return $settings->withHighscoreEnabled(false);
114  }
115 
116  return $settings
117  ->withHighscoreEnabled(true)
118  ->withHighscoreOwnTable(
119  (int) $v['highscore']['highscore_mode'] == self::HIGHSCORE_SHOW_OWN_TABLE ||
120  (int) $v['highscore']['highscore_mode'] == self::HIGHSCORE_SHOW_ALL_TABLES
121  )
122  ->withHighscoreTopTable(
123  (int) $v['highscore']['highscore_mode'] == self::HIGHSCORE_SHOW_TOP_TABLE ||
124  (int) $v['highscore']['highscore_mode'] == self::HIGHSCORE_SHOW_ALL_TABLES
125  )
126  ->withHighscoreTopNum($v['highscore']['highscore_top_num'])
127  ->withHighscoreAnon($v['highscore']['highscore_anon'])
128  ->withHighscoreAchievedTS($v['highscore']['highscore_achieved_ts'])
129  ->withHighscoreScore($v['highscore']['highscore_score'])
130  ->withHighscorePercentage($v['highscore']['highscore_percentage'])
131  ->withHighscoreHints($v['highscore']['highscore_hints'])
132  ->withHighscoreWTime($v['highscore']['highscore_wtime']);
133  }
134  )
135  );
136  }
137 
138  public function toStorage(): array
139  {
140  return [
141  'highscore_enabled' => ['integer', (int) $this->getHighscoreEnabled()],
142  'highscore_anon' => ['integer', (int) $this->getHighscoreAnon()],
143  'highscore_achieved_ts' => ['integer', (int) $this->getHighscoreAchievedTS()],
144  'highscore_score' => ['integer', (int) $this->getHighscoreScore()],
145  'highscore_percentage' => ['integer', (int) $this->getHighscorePercentage()],
146  'highscore_hints' => ['integer', (int) $this->getHighscoreHints()],
147  'highscore_wtime' => ['integer', (int) $this->getHighscoreWTime()],
148  'highscore_own_table' => ['integer', (int) $this->getHighscoreOwnTable()],
149  'highscore_top_table' => ['integer', (int) $this->getHighscoreTopTable()],
150  'highscore_top_num' => ['integer', $this->getHighscoreTopNum()]
151  ];
152  }
153 
154  public function toLog(AdditionalInformationGenerator $additional_info): array
155  {
156  if (!$this->getHighscoreEnabled()) {
157  return [
160  ];
161  }
162 
163  switch ($this->getHighScoreMode()) {
164  case self::HIGHSCORE_SHOW_OWN_TABLE:
165  $highscore_mode = $additional_info->getTagForLangVar('tst_highscore_own_table');
166  break;
167  case self::HIGHSCORE_SHOW_TOP_TABLE:
168  $highscore_mode = $additional_info->getTagForLangVar('tst_highscore_top_table');
169  break;
170  case self::HIGHSCORE_SHOW_ALL_TABLES:
171  $highscore_mode = $additional_info->getTagForLangVar('tst_highscore_all_tables');
172  break;
173  default:
174  $highscore_mode = $additional_info->getEnabledDisabledTagForBool(false);
175  }
176 
177  return [
194  ];
195  }
196 
197  public function getHighscoreEnabled(): bool
198  {
200  }
201  public function withHighscoreEnabled(bool $highscore_enabled): self
202  {
203  $clone = clone $this;
204  $clone->highscore_enabled = $highscore_enabled;
205  return $clone;
206  }
207 
208  public function getHighscoreOwnTable(): bool
209  {
211  }
212  public function withHighscoreOwnTable(bool $highscore_own_table): self
213  {
214  $clone = clone $this;
215  $clone->highscore_own_table = $highscore_own_table;
216  return $clone;
217  }
218  public function getHighscoreTopTable(): bool
219  {
221  }
222  public function withHighscoreTopTable(bool $highscore_top_table): self
223  {
224  $clone = clone $this;
225  $clone->highscore_top_table = $highscore_top_table;
226  return $clone;
227  }
228 
229  public function getHighScoreMode(): int
230  {
231  if ($this->getHighscoreTopTable() && $this->getHighscoreOwnTable()) {
232  return self::HIGHSCORE_SHOW_ALL_TABLES;
233  }
234 
235  if ($this->getHighscoreTopTable()) {
236  return self::HIGHSCORE_SHOW_TOP_TABLE;
237  }
238 
239  if ($this->getHighscoreOwnTable()) {
240  return self::HIGHSCORE_SHOW_OWN_TABLE;
241  }
242 
243  return 0;
244  }
245 
246  public function getHighscoreTopNum(): int
247  {
249  }
250  public function withHighscoreTopNum(int $highscore_top_num): self
251  {
252  $clone = clone $this;
253  $clone->highscore_top_num = $highscore_top_num;
254  return $clone;
255  }
256 
257  public function getHighscoreAnon(): bool
258  {
259  return $this->highscore_anon;
260  }
261  public function withHighscoreAnon(bool $highscore_anon): self
262  {
263  $clone = clone $this;
264  $clone->highscore_anon = $highscore_anon;
265  return $clone;
266  }
267 
268  public function getHighscoreAchievedTS(): bool
269  {
271  }
272  public function withHighscoreAchievedTS(bool $highscore_achieved_ts): self
273  {
274  $clone = clone $this;
275  $clone->highscore_achieved_ts = $highscore_achieved_ts;
276  return $clone;
277  }
278 
279  public function getHighscoreScore(): bool
280  {
281  return $this->highscore_score;
282  }
283  public function withHighscoreScore(bool $highscore_score): self
284  {
285  $clone = clone $this;
286  $clone->highscore_score = $highscore_score;
287  return $clone;
288  }
289 
290  public function getHighscorePercentage(): bool
291  {
293  }
294  public function withHighscorePercentage(bool $highscore_percentage): self
295  {
296  $clone = clone $this;
297  $clone->highscore_percentage = $highscore_percentage;
298  return $clone;
299  }
300 
301  public function getHighscoreHints(): bool
302  {
303  return $this->highscore_hints;
304  }
305  public function withHighscoreHints(bool $highscore_hints): self
306  {
307  $clone = clone $this;
308  $clone->highscore_hints = $highscore_hints;
309  return $clone;
310  }
311 
312  public function getHighscoreWTime(): bool
313  {
314  return $this->highscore_wtime;
315  }
316  public function withHighscoreWTime(bool $highscore_wtime): self
317  {
318  $clone = clone $this;
319  $clone->highscore_wtime = $highscore_wtime;
320  return $clone;
321  }
322 }
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
toLog(AdditionalInformationGenerator $additional_info)
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...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
withValue($value)
Get an input like this with another value displayed on the client side.
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
This describes inputs that can be used in forms.
Definition: FormInput.php:32