19 declare(strict_types=1);
52 array $environment = null
54 $optional_group = $f->optionalGroup(
56 'highscore_mode' => $f->radio($lng->
txt(
'tst_highscore_mode'),
"")
57 ->withOption((
string) self::HIGHSCORE_SHOW_OWN_TABLE, $lng->
txt(
'tst_highscore_own_table'), $lng->
txt(
'tst_highscore_own_table_description'))
58 ->withOption((
string) self::HIGHSCORE_SHOW_TOP_TABLE, $lng->
txt(
'tst_highscore_top_table'), $lng->
txt(
'tst_highscore_top_table_description'))
59 ->withOption((
string) self::HIGHSCORE_SHOW_ALL_TABLES, $lng->
txt(
'tst_highscore_all_tables'), $lng->
txt(
'tst_highscore_all_tables_description'))
63 'highscore_top_num' => $f->numeric($lng->
txt(
'tst_highscore_top_num'), $lng->
txt(
'tst_highscore_top_num_description'))
66 'highscore_anon' => $f->checkbox(
67 $lng->
txt(
'tst_highscore_anon'),
68 $lng->
txt(
'tst_highscore_anon_description')
70 'highscore_achieved_ts' => $f->checkbox(
71 $lng->
txt(
'tst_highscore_achieved_ts'),
72 $lng->
txt(
'tst_highscore_achieved_ts_description')
74 'highscore_score' => $f->checkbox(
75 $lng->
txt(
'tst_highscore_score'),
76 $lng->
txt(
'tst_highscore_score_description')
78 'highscore_percentage' => $f->checkbox(
79 $lng->
txt(
'tst_highscore_percentage'),
80 $lng->
txt(
'tst_highscore_percentage_description')
82 'highscore_hints' => $f->checkbox(
83 $lng->
txt(
'tst_highscore_hints'),
84 $lng->
txt(
'tst_highscore_hints_description')
86 'highscore_wtime' => $f->checkbox(
87 $lng->
txt(
'tst_highscore_wtime'),
88 $lng->
txt(
'tst_highscore_wtime_description')
92 $lng->
txt(
'tst_highscore_enabled'),
93 $lng->
txt(
'tst_highscore_description')
97 $optional_group = $optional_group->
withValue(null);
100 $fields = [
'highscore' => $optional_group];
101 return $f->section($fields, $lng->
txt(
'tst_results_gamification'))
103 $refinery->custom()->transformation(
107 if (! $v[
'highscore']) {
108 return $settings->withHighscoreEnabled(
false);
112 ->withHighscoreEnabled(
true)
113 ->withHighscoreOwnTable(
114 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_OWN_TABLE ||
115 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_ALL_TABLES
117 ->withHighscoreTopTable(
118 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_TOP_TABLE ||
119 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_ALL_TABLES
121 ->withHighscoreTopNum($v[
'highscore'][
'highscore_top_num'])
122 ->withHighscoreAnon($v[
'highscore'][
'highscore_anon'])
123 ->withHighscoreAchievedTS($v[
'highscore'][
'highscore_achieved_ts'])
124 ->withHighscoreScore($v[
'highscore'][
'highscore_score'])
125 ->withHighscorePercentage($v[
'highscore'][
'highscore_percentage'])
126 ->withHighscoreHints($v[
'highscore'][
'highscore_hints'])
127 ->withHighscoreWTime($v[
'highscore'][
'highscore_wtime']);
155 $clone = clone $this;
166 $clone = clone $this;
176 $clone = clone $this;
184 return self::HIGHSCORE_SHOW_ALL_TABLES;
188 return self::HIGHSCORE_SHOW_TOP_TABLE;
192 return self::HIGHSCORE_SHOW_OWN_TABLE;
204 $clone = clone $this;
215 $clone = clone $this;
226 $clone = clone $this;
237 $clone = clone $this;
248 $clone = clone $this;
259 $clone = clone $this;
270 $clone = clone $this;
withHighscoreOwnTable(bool $highscore_own_table)
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...
const HIGHSCORE_SHOW_OWN_TABLE
__construct(int $test_id)
withHighscoreAchievedTS(bool $highscore_achieved_ts)
bool $highscore_percentage
withHighscoreWTime(bool $highscore_wtime)
withHighscoreTopNum(int $highscore_top_num)
withHighscoreScore(bool $highscore_score)
bool $highscore_top_table
withHighscoreHints(bool $highscore_hints)
bool $highscore_own_table
const HIGHSCORE_SHOW_ALL_TABLES
withHighscoreEnabled(bool $highscore_enabled)
const HIGHSCORE_SHOW_TOP_TABLE
__construct(Container $dic, ilPlugin $plugin)
withHighscoreTopTable(bool $highscore_top_table)
withHighscorePercentage(bool $highscore_percentage)
bool $highscore_achieved_ts
withHighscoreAnon(bool $highscore_anon)
Refinery Factory $refinery
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment=null)