19 declare(strict_types=1);
57 ?array $environment =
null 59 $optional_group = $f->optionalGroup(
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'))
68 'highscore_top_num' => $f->numeric($lng->
txt(
'tst_highscore_top_num'), $lng->
txt(
'tst_highscore_top_num_description'))
71 'highscore_anon' => $f->checkbox(
72 $lng->
txt(
'tst_highscore_anon'),
73 $lng->
txt(
'tst_highscore_anon_description')
75 'highscore_achieved_ts' => $f->checkbox(
76 $lng->
txt(
'tst_highscore_achieved_ts'),
77 $lng->
txt(
'tst_highscore_achieved_ts_description')
79 'highscore_score' => $f->checkbox(
80 $lng->
txt(
'tst_highscore_score'),
81 $lng->
txt(
'tst_highscore_score_description')
83 'highscore_percentage' => $f->checkbox(
84 $lng->
txt(
'tst_highscore_percentage'),
85 $lng->
txt(
'tst_highscore_percentage_description')
87 'highscore_hints' => $f->checkbox(
88 $lng->
txt(
'tst_highscore_hints'),
89 $lng->
txt(
'tst_highscore_hints_description')
91 'highscore_wtime' => $f->checkbox(
92 $lng->
txt(
'tst_highscore_wtime'),
93 $lng->
txt(
'tst_highscore_wtime_description')
97 $lng->
txt(
'tst_highscore_enabled'),
98 $lng->
txt(
'tst_highscore_description')
105 $fields = [
'highscore' => $optional_group];
106 return $f->section($fields, $lng->
txt(
'tst_results_gamification'))
108 $refinery->custom()->transformation(
110 $settings = clone $this;
112 if (! $v[
'highscore']) {
113 return $settings->withHighscoreEnabled(
false);
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
122 ->withHighscoreTopTable(
123 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_TOP_TABLE ||
124 (
int) $v[
'highscore'][
'highscore_mode'] == self::HIGHSCORE_SHOW_ALL_TABLES
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']);
164 case self::HIGHSCORE_SHOW_OWN_TABLE:
165 $highscore_mode = $additional_info->
getTagForLangVar(
'tst_highscore_own_table');
167 case self::HIGHSCORE_SHOW_TOP_TABLE:
168 $highscore_mode = $additional_info->
getTagForLangVar(
'tst_highscore_top_table');
170 case self::HIGHSCORE_SHOW_ALL_TABLES:
171 $highscore_mode = $additional_info->
getTagForLangVar(
'tst_highscore_all_tables');
203 $clone = clone $this;
214 $clone = clone $this;
224 $clone = clone $this;
232 return self::HIGHSCORE_SHOW_ALL_TABLES;
236 return self::HIGHSCORE_SHOW_TOP_TABLE;
240 return self::HIGHSCORE_SHOW_OWN_TABLE;
252 $clone = clone $this;
263 $clone = clone $this;
274 $clone = clone $this;
285 $clone = clone $this;
296 $clone = clone $this;
307 $clone = clone $this;
318 $clone = clone $this;
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
withHighscoreTopTable(bool $highscore_top_table)
toLog(AdditionalInformationGenerator $additional_info)
withHighscoreScore(bool $highscore_score)
withHighscoreTopNum(int $highscore_top_num)
withHighscoreOwnTable(bool $highscore_own_table)
bool $highscore_percentage
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...
withHighscorePercentage(bool $highscore_percentage)
const HIGHSCORE_SHOW_OWN_TABLE
bool $highscore_top_table
bool $highscore_achieved_ts
const HIGHSCORE_SHOW_ALL_TABLES
bool $highscore_own_table
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withHighscoreAnon(bool $highscore_anon)
const HIGHSCORE_SHOW_TOP_TABLE
withHighscoreHints(bool $highscore_hints)
__construct(int $test_id)
withHighscoreWTime(bool $highscore_wtime)
__construct(Container $dic, ilPlugin $plugin)
withHighscoreAchievedTS(bool $highscore_achieved_ts)
withHighscoreEnabled(bool $highscore_enabled)